From: Stefan Csomor Date: Sun, 13 Jan 2002 19:20:16 +0000 (+0000) Subject: corrected DoReadLong X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/78500b7db1287068a04469e1ce92b4fe99e4e4f0 corrected DoReadLong git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13553 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/fileconf.cpp b/src/common/fileconf.cpp index b6f357dc6e..ac24da740d 100644 --- a/src/common/fileconf.cpp +++ b/src/common/fileconf.cpp @@ -844,7 +844,7 @@ bool wxFileConfig::DoReadLong(const wxString& key, long *pl) const { return FALSE; } - *pl = str.ToLong(pl) ; + str.ToLong(pl) ; return TRUE ; }