summaryrefslogtreecommitdiffstats
path: root/extra/ede/ede-2.0-beta.c++.patch
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-01-24 19:52:28 +0100
committertnut <thierryn1 at hispeed dot ch>2010-01-24 19:52:28 +0100
commit58285d8d0288ff76d0440e3c0ca9e55ab05f645a (patch)
tree50a447667f239143b4aa1b3c00275a4d7c6233e0 /extra/ede/ede-2.0-beta.c++.patch
parenta8a325d039c92e77fc5dcf877e33f9478061c508 (diff)
downloadnutyx-extra-58285d8d0288ff76d0440e3c0ca9e55ab05f645a.tar.gz
nutyx-extra-58285d8d0288ff76d0440e3c0ca9e55ab05f645a.tar.bz2
nutyx-extra-58285d8d0288ff76d0440e3c0ca9e55ab05f645a.tar.xz
nutyx-extra-58285d8d0288ff76d0440e3c0ca9e55ab05f645a.zip
Maj ede#2.0-beta-2-1
Diffstat (limited to 'extra/ede/ede-2.0-beta.c++.patch')
-rwxr-xr-xextra/ede/ede-2.0-beta.c++.patch52
1 files changed, 0 insertions, 52 deletions
diff --git a/extra/ede/ede-2.0-beta.c++.patch b/extra/ede/ede-2.0-beta.c++.patch
deleted file mode 100755
index a4762cd1e..000000000
--- a/extra/ede/ede-2.0-beta.c++.patch
+++ /dev/null
@@ -1,52 +0,0 @@
---- ede-2.0-beta.orig/ede-bug-tools/ede-bug-report/xmlrpc-c/deps/util/include/stdargx.h 2009-10-08 10:44:45.000000000 -0300
-+++ ede-2.0-beta/ede-bug-tools/ede-bug-report/xmlrpc-c/deps/util/include/stdargx.h 2009-10-10 12:23:27.000000000 -0300
-@@ -60,7 +60,7 @@
- */
- memcpy(&argsxP->v, args, sizeof(argsxP->v));
- #else
-- argsxP->v = args;
-+ va_copy(argsxP->v, args);
- #endif
- }
-
---- ede-2.0-beta.orig/ede-autostart/ede-autostart.cpp 2009-10-08 10:44:55.000000000 -0300
-+++ ede-2.0-beta/ede-autostart/ede-autostart.cpp 2009-10-11 09:37:21.000000000 -0300
-@@ -87,8 +87,8 @@
- static Fl_Check_Browser* cbrowser;
- static Fl_Pixmap warnpix((const char**)warning_xpm);
-
--static char* get_basename(const char* path) {
-- char* p = strrchr(path, '/');
-+static const char* get_basename(const char* path) {
-+ const char* p = strrchr(path, '/');
- if(p)
- return (p + 1);
-
---- ede-2.0-beta.orig/ede-desktop/Utils.cpp 2009-10-08 10:44:06.000000000 -0300
-+++ ede-2.0-beta/ede-desktop/Utils.cpp 2009-10-11 09:48:07.000000000 -0300
-@@ -305,11 +305,11 @@
- }
-
- char* get_basename(const char* path) {
-- char* p = strrchr(path, '/');
-+ const char* p = strrchr(path, '/');
- if(p)
-- return (p + 1);
-+ return const_cast<char*>(p + 1);
-
-- return (char*)path;
-+ return const_cast<char*>(path);
- }
-
- bool is_temp_filename(const char* path) {
---- ede-2.0-beta.orig/ede-launch/ede-launch.cpp 2009-10-08 10:44:09.000000000 -0300
-+++ ede-2.0-beta/ede-launch/ede-launch.cpp 2009-10-11 09:53:11.000000000 -0300
-@@ -67,7 +67,7 @@
- }
-
- static char* get_basename(const char* path) {
-- char *p = strrchr(path, '/');
-+ char *p = const_cast<char*>(strrchr(path, '/'));
- if(p)
- return (p + 1);
-