Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/editors/fxite/files/patch-src_migration.cpp
16461 views
1
Fix build with clang 6
2
3
migration.cpp:134:27: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
4
"The location of the "APP_NAME" configuration directory has changed.\n"
5
^
6
7
migration.cpp:144:33: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
8
" Click [Cancel] to exit "APP_NAME" now without any changes.\n"
9
10
--- src/migration.cpp.orig 2013-10-03 09:22:51 UTC
11
+++ src/migration.cpp
12
@@ -131,7 +131,7 @@ void MigrateConfigDir(FXApp*a, const FXString &src, co
13
_("IMPORTANT NOTICE"),
14
_(
15
"\n"
16
- "The location of the "APP_NAME" configuration directory has changed.\n"
17
+ "The location of the " APP_NAME " configuration directory has changed.\n"
18
"\n"
19
#ifndef WIN32
20
"This is due to changes in the FOX toolkit, in accordance with\n"
21
@@ -141,7 +141,7 @@ void MigrateConfigDir(FXApp*a, const FXString &src, co
22
"Migration options:\n"
23
" Click [ Yes ] to automatically copy your old settings (recommended).\n"
24
" Click [ No ] to create a new configuration.\n"
25
- " Click [Cancel] to exit "APP_NAME" now without any changes.\n"
26
+ " Click [Cancel] to exit " APP_NAME " now without any changes.\n"
27
"\n"
28
"Do you want me to copy your existing configuration?"
29
),
30
31