Use '0' instead of NULL

This commit is contained in:
2011-08-14 17:47:16 +02:00
parent c4a88fb459
commit 66a60bf7a6
22 changed files with 67 additions and 67 deletions

View File

@@ -28,7 +28,7 @@ class MyApp: public wxApp
if (argc == 2)
new KissCount(wxString(argv[1]).mb_str());
else
new KissCount(NULL);
new KissCount(0);
}
catch (std::string s)
{