Path: blob/main/editors/fxite/files/patch-src_migration.cpp
16461 views
Fix build with clang 612migration.cpp:134:27: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]3"The location of the "APP_NAME" configuration directory has changed.\n"4^56migration.cpp:144:33: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]7" Click [Cancel] to exit "APP_NAME" now without any changes.\n"89--- src/migration.cpp.orig 2013-10-03 09:22:51 UTC10+++ src/migration.cpp11@@ -131,7 +131,7 @@ void MigrateConfigDir(FXApp*a, const FXString &src, co12_("IMPORTANT NOTICE"),13_(14"\n"15- "The location of the "APP_NAME" configuration directory has changed.\n"16+ "The location of the " APP_NAME " configuration directory has changed.\n"17"\n"18#ifndef WIN3219"This is due to changes in the FOX toolkit, in accordance with\n"20@@ -141,7 +141,7 @@ void MigrateConfigDir(FXApp*a, const FXString &src, co21"Migration options:\n"22" Click [ Yes ] to automatically copy your old settings (recommended).\n"23" Click [ No ] to create a new configuration.\n"24- " Click [Cancel] to exit "APP_NAME" now without any changes.\n"25+ " Click [Cancel] to exit " APP_NAME " now without any changes.\n"26"\n"27"Do you want me to copy your existing configuration?"28),293031