summaryrefslogtreecommitdiff
path: root/gio/src/loadableicon.ccg
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2010-01-29 14:55:28 +0100
committerMurray Cumming <murrayc@murrayc.com>2010-01-29 14:55:28 +0100
commit3c0b4ac6c1f608de841397f5ccab0c1ef2c87ba3 (patch)
tree4bf1eb262ef583cfe2d94cd48b2da731968dba60 /gio/src/loadableicon.ccg
parentafa80fbc792015d7f9143e5ae7d92329356640fc (diff)
downloadglibmm-3c0b4ac6c1f608de841397f5ccab0c1ef2c87ba3.tar.gz
Use 0 instead of NULL.
* gio/src/*.ccg * glib/src/*.ccg: Use 0 instead of NULL because this is C++ where NULL is generally not a good idea. I didn't see any places where it was a real problem though.
Diffstat (limited to 'gio/src/loadableicon.ccg')
-rw-r--r--gio/src/loadableicon.ccg4
1 files changed, 2 insertions, 2 deletions
diff --git a/gio/src/loadableicon.ccg b/gio/src/loadableicon.ccg
index 5080477c..0a506b1e 100644
--- a/gio/src/loadableicon.ccg
+++ b/gio/src/loadableicon.ccg
@@ -69,7 +69,7 @@ LoadableIcon::load(int size, Glib::ustring& type, std::auto_ptr<Glib::Error>& er
Glib::wrap(g_loadable_icon_load(gobj(),
size,
&c_type,
- NULL,
+ 0,
&gerror));
#ifdef GLIBMM_EXCEPTIONS_ENABLED
if(gerror)
@@ -112,7 +112,7 @@ LoadableIcon::load_async(int size, const SlotAsyncReady& slot)
g_loadable_icon_load_async(gobj(),
size,
- NULL,
+ 0,
&SignalProxy_async_callback,
slot_copy);
}