Sophie

Sophie

distrib > Mageia > 9 > armv7hl > media > core-release-src > by-pkgid > b67ee223e1a82a722824e390eee014fe > files > 7

douml-1.0.8-7.mga9.src.rpm

Index: douml-1.0.8/src/PhpReverse/Progress.cpp
===================================================================
--- douml-1.0.8/src/PhpReverse/Progress.cpp
+++ douml-1.0.8/src/PhpReverse/Progress.cpp	2018-03-24 18:40:12.436110460 +0100
@@ -33,7 +33,7 @@
 #include "Package.h"
 
 Progress::Progress(int n, const char * lbl)
-    : QProgressDialog(lbl, 0, n, 0, 0, FALSE), n(0)
+    : QProgressDialog(lbl, 0, n, 0, 0, 0), n(0)
 {
     setAttribute(Qt::WA_DeleteOnClose);
     setMinimumDuration(1000);
Index: douml-1.0.8/src/JavaCat/Progress.cpp
===================================================================
--- douml-1.0.8/src/JavaCat/Progress.cpp
+++ douml-1.0.8/src/JavaCat/Progress.cpp	2018-03-24 18:39:47.396137269 +0100
@@ -36,7 +36,7 @@
 Progress * Progress::it = 0;
 
 Progress::Progress(int n, const char * lbl, QApplication * a)
-    : QProgressDialog(0, 0, n, 0, 0, FALSE), n(0), app(a)
+    : QProgressDialog(0, 0, n, 0, 0, 0), n(0), app(a)
 {
     setAttribute(Qt::WA_DeleteOnClose);
     if (it != 0)
Index: douml-1.0.8/src/dialog/EnvDialog.cpp
===================================================================
--- douml-1.0.8/src/dialog/EnvDialog.cpp
+++ douml-1.0.8/src/dialog/EnvDialog.cpp	2018-03-24 18:37:58.566253769 +0100
@@ -198,7 +198,7 @@
         grid->addWidget(new QLabel(tr("\nOptional, to indicate a character set in case you use non ISO_8859-1/latin1 characters. For instance KOI8-R or KOI8-RU for Cyrillic")),13,1);
 
         grid->addWidget(new QLabel(tr("Character set ")),14,0);
-        cb_charset = new QComboBox(FALSE);
+        cb_charset = new QComboBox(NULL);
         grid->addWidget(cb_charset,14,1);
         cb_charset->setAutoCompletion(completion());
         QStringList l;
Index: douml-1.0.8/src/CppReverse/ClassContainer.cpp
===================================================================
--- douml-1.0.8/src/CppReverse/ClassContainer.cpp
+++ douml-1.0.8/src/CppReverse/ClassContainer.cpp	2018-03-24 18:38:27.426222872 +0100
@@ -352,7 +352,7 @@
                 }
             }
 
-            if ((type[index2] != (char)0) && (defined[type.left(index2)] != (char)0))
+            if ((type[index2] != (char)0) && (defined[type.left(index2)] != NULL))
                 // explicit template
                 index = index2;
             else if (defined[type.left(index)] != 0)