From 78500b7db1287068a04469e1ce92b4fe99e4e4f0 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sun, 13 Jan 2002 19:20:16 +0000 Subject: [PATCH] corrected DoReadLong git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13553 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/fileconf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ; } -- 2.45.2