From fc9f11cc6f95709bc74a7b8b3217a5b4b83d5ecf Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 20 Jan 2007 14:15:57 +0000 Subject: [PATCH] name user config file appname.conf when it's locayed in ~/.appname by default git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44269 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 c868876301..06c4a1e2d0 100644 --- a/src/common/fileconf.cpp +++ b/src/common/fileconf.cpp @@ -439,7 +439,7 @@ wxFileConfig::wxFileConfig(const wxString& appName, const wxString& vendorName, m_strLocalFile = GetLocalFileName(GetAppName()); #if defined(__UNIX__) && !defined(__VMS) if ( style & wxCONFIG_USE_SUBDIR ) - m_strLocalFile << wxFILE_SEP_PATH << GetAppName(); + m_strLocalFile << wxFILE_SEP_PATH << GetAppName() << _T(".conf"); #endif } -- 2.45.2