summaryrefslogtreecommitdiffstats
path: root/freebsd/tdeutils/files/patch-bp000-fix-ftbfs-on-c++11.diff
blob: 06634c4c6faa6cfc263da7c27a168aecfdbc7bf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/superkaramba/src/imagelabel_python.cpp b/superkaramba/src/imagelabel_python.cpp
index 61af3c5..1251cc9 100644
--- a/superkaramba/src/imagelabel_python.cpp
+++ b/superkaramba/src/imagelabel_python.cpp
@@ -122,7 +122,7 @@ PyObject* py_createTaskIcon(PyObject *, PyObject *args)
   {
     //no task was found
     tqWarning("Task not found.");
-    return (long)NULL ;
+    return NULL;
   }
   //retrieve the TQPixmap that represents this image
   TQPixmap iconPixmap = KWin::icon(currTask->window());