]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/fileconf.cpp
no message
[wxWidgets.git] / src / common / fileconf.cpp
index 21cdbf640d4bc42530ea59745e56c8a6cdc44410..cb7ca2fa106b25d321e936f226124d9763502d58 100644 (file)
@@ -859,7 +859,7 @@ wxFileConfig::LineList *wxFileConfig::ConfigGroup::GetGroupLine()
     // this group wasn't present in local config file, add it now
     if ( pParent != NULL ) {
       wxString strFullName;
-      strFullName << "[" << GetFullName().c_str() + 1 << "]"; // +1: no '/'
+      strFullName << "[" << (GetFullName().c_str() + 1) << "]"; // +1: no '/'
       m_pLine = m_pConfig->LineListInsert(strFullName,
                                           pParent->GetLastGroupLine());
       pParent->SetLastGroup(this);  // we're surely after all the others