From 60a6ae0282277efecbd2015a8ce78a67d6139cd8 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sat, 18 Oct 2008 20:56:30 +0000 Subject: [PATCH] use "Root directory" rather than "My computer" in non-win32-version git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1774 0778d3d1-df1d-0410-868b-ea421aaaa00d --- ChangeLog | 3 +++ src/gui/main_window.cpp | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 393394213..276bc1276 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-10-18 Tobias Doerffel + * src/gui/main_window.cpp: + use "Root directory" rather than "My computer" in non-win32-version + * cmake/modules/FindAlsa.cmake: * CMakeLists.txt: do not create alsaconfig.h diff --git a/src/gui/main_window.cpp b/src/gui/main_window.cpp index 828308c76..b33ebca51 100644 --- a/src/gui/main_window.cpp +++ b/src/gui/main_window.cpp @@ -125,7 +125,11 @@ mainWindow::mainWindow( void ) : root_paths += drive.absolutePath(); } side_bar->appendTab( new fileBrowser( root_paths.join( "*" ), "*", +#ifdef LMMS_BUILD_WIN32 tr( "My computer" ), +#else + tr( "Root directory" ), +#endif embed::getIconPixmap( "computer" ), splitter, #ifdef LMMS_BUILD_WIN32