changes in xsl and css, 0 instead of NULL in code
[mdictionary] / src / mdictionary / gui / DictTypeSelectDialog.cpp
index 886a377..b03296b 100644 (file)
@@ -44,7 +44,7 @@ DictTypeSelectDialog::DictTypeSelectDialog(QList<CommonDictInterface *> plugins,
         pluginsListWidget->addItem(item);
     }
 
-    _selectedPlugin = NULL;
+    _selectedPlugin = 0;
 
     connect(pluginsListWidget, SIGNAL(itemClicked(QListWidgetItem*)),
             this, SLOT(pluginSelected(QListWidgetItem*)));
@@ -68,6 +68,6 @@ CommonDictInterface* DictTypeSelectDialog::addNewDict(
         return dictSelect.selectedPlugin();
     }
     else {
-        return NULL;
+        return 0;
     }
 }