Skip to content

Commit 7b6b249

Browse files
committed
Fixed compilation error on Linux.
1 parent e659c62 commit 7b6b249

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mrv2/lib/mrvFl/mrvLanguages.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ void check_language(PreferencesUI* uiPrefs, int& language_index)
110110
#ifdef _WIN32
111111
win32_execv();
112112
#else
113-
std::string root = rootpath();
113+
std::string root = mrv::rootpath();
114114
root += "/bin/mrv2";
115115

116116
const char* const parmList[] = {root.c_str(), NULL};
@@ -295,7 +295,7 @@ namespace mrv
295295
LOG_ERROR(e.what());
296296
}
297297

298-
std::string path = rootpath();
298+
std::string path = mrv::rootpath();
299299
path += "/share/locale/";
300300

301301
char buf[256];

0 commit comments

Comments
 (0)