Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/editors/fxite/files/patch-src_appname.cpp
16461 views
1
Fix build with clang 6
2
3
appname.cpp:145:32: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
4
dlg=new FxAsqWin(_("About "EXE_NAME), btns, i++);
5
6
--- src/appname.cpp.orig 2018-02-16 06:02:39 UTC
7
+++ src/appname.cpp
8
@@ -142,7 +142,7 @@ void AppAbout::AboutBox()
9
FxAsqWin*dlg=NULL;
10
FXString msg;
11
int rv=-1;
12
- dlg=new FxAsqWin(_("About "EXE_NAME), btns, i++);
13
+ dlg=new FxAsqWin(_("About " EXE_NAME), btns, i++);
14
msg.format(App_About, _("Version"), VERSION, "[email protected]",
15
_(" This program is free software, under the terms of the \n"),
16
_("Running"),
17
18