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
This commit is contained in:
Tobias Doerffel
2008-10-18 20:56:30 +00:00
parent 5b99179451
commit 60a6ae0282
2 changed files with 7 additions and 0 deletions

View File

@@ -1,5 +1,8 @@
2008-10-18 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* 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

View File

@@ -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