From: Vadim Zeitlin Date: Sun, 1 Apr 2001 21:59:06 +0000 (+0000) Subject: typo fixed X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/873fb06d2abb91b5ab9168d9ba333b2423d12c14 typo fixed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9627 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/latex/wx/config.tex b/docs/latex/wx/config.tex index 51e85c0c61..18d836c78e 100644 --- a/docs/latex/wx/config.tex +++ b/docs/latex/wx/config.tex @@ -53,7 +53,7 @@ Here is how you would typically use this class: // another example: using default values and the full path instead of just // key name: if the key is not found , the value 17 is returned - long value = config->Read("/LastRun/CalculatedValues/MaxValue", -1); + long value = config->Read("/LastRun/CalculatedValues/MaxValue", 17); ... ... ...