From 5e474cf87f608ebdba228904a0f62b8ef5b1f045 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Fri, 2 Aug 2013 10:35:58 +0200 Subject: [PATCH] Modified usage of wxStandardPaths to make it compatible with newer versions of wxWidgets. --- common/edaappl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/edaappl.cpp b/common/edaappl.cpp index 25f3f1d2ca..12933f0296 100644 --- a/common/edaappl.cpp +++ b/common/edaappl.cpp @@ -454,7 +454,7 @@ bool EDA_APP::SetBinDir() // Linux and Unix #elif defined(__UNIX__) - m_BinDir = wxStandardPaths().GetExecutablePath(); + m_BinDir = wxStandardPaths::Get().GetExecutablePath(); #else m_BinDir = argv[0]; #endif // __UNIX__