From eddac3cb0f06fe0cb8f491e879cb463ccd4edc3a Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Thu, 22 Apr 2010 14:57:18 +0000 Subject: [PATCH] Fixed (correct) warning about uninitialized inputConv. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64113 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/intl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/intl.cpp b/src/common/intl.cpp index 5459cfe1e5..61bf19eba5 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -1308,8 +1308,8 @@ bool wxMsgCatalogFile::FillHash(wxMessagesHash& hash, wxUnusedVar(msgIdCharset); // silence warning in Unicode build // conversion to use to convert catalog strings to the GUI encoding - wxMBConv *inputConv, - *inputConvPtr = NULL; // same as inputConv but safely deleteable + wxMBConv *inputConv = NULL; + wxMBConv *inputConvPtr = NULL; // same as inputConv but safely deleteable if ( !m_charset.empty() ) { -- 2.47.2