]> git.saurik.com Git - wxWidgets.git/commitdiff
Use 0 instead of NULL to initialize wxUIntPtr.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 6 Aug 2009 00:03:08 +0000 (00:03 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 6 Aug 2009 00:03:08 +0000 (00:03 +0000)
This avoids warning about assigning NULL to a non-pointer with some g++
versions.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/logg.cpp

index d7eb54290f19b132328806da44b982782f4939b9..c2e487c0ea189a533487ddfb7662958896a968a7 100644 (file)
@@ -371,7 +371,7 @@ void wxLogGui::DoLogRecord(wxLogLevel level,
                 wxFrame *pFrame = NULL;
 
                 // check if the frame was passed to us explicitly
-                wxUIntPtr ptr = NULL;
+                wxUIntPtr ptr = 0;
                 if ( info.GetNumValue(wxLOG_KEY_FRAME, &ptr) )
                 {
                     pFrame = static_cast<wxFrame *>(wxUIntToPtr(ptr));