]> git.saurik.com Git - wxWidgets.git/commitdiff
corrected DoReadLong
authorStefan Csomor <csomor@advancedconcepts.ch>
Sun, 13 Jan 2002 19:20:16 +0000 (19:20 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sun, 13 Jan 2002 19:20:16 +0000 (19:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13553 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/fileconf.cpp

index b6f357dc6e657a6633c27cf16175385eb0fdfc64..ac24da740da1cbb777eca052de6ea4a7eb2cd5c0 100644 (file)
@@ -844,7 +844,7 @@ bool wxFileConfig::DoReadLong(const wxString& key, long *pl) const
   {
     return FALSE;
   }
-  *pl = str.ToLong(pl) ;
+  str.ToLong(pl) ;
   return TRUE ;
 }