diff options
Diffstat (limited to 'src/gtk2_in_qt4.cpp')
-rw-r--r-- | src/gtk2_in_qt4.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gtk2_in_qt4.cpp b/src/gtk2_in_qt4.cpp index 3e2e256..c13561e 100644 --- a/src/gtk2_in_qt4.cpp +++ b/src/gtk2_in_qt4.cpp @@ -122,9 +122,9 @@ suil_wrapper_new(SuilHost* host, if (!host->gtk_lib) { SUIL_ERRORF("Failed to open %s (%s)\n", SUIL_GTK2_LIB_NAME, dylib_error()); - return NULL; + return nullptr; } - gtk_init(NULL, NULL); + gtk_init(nullptr, nullptr); } /* Create wrapper implementation. */ |