Skip to content

Commit

Permalink
Applied patch from ticket #488.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@6326 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed Dec 28, 2006
1 parent 59896e1 commit 4aeb352
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/plugins/grass/qgsgrasstools.cpp
Expand Up @@ -118,11 +118,11 @@ QgsGrassTools::QgsGrassTools ( QgisApp *qgisApp, QgisIface *iface,


mModulesListView = new Q3ListView();
mTabWidget->addTab( mModulesListView, "Modules" );
mTabWidget->addTab( mModulesListView, tr("Modules") );
mModulesListView->addColumn("col1",0);

// Set list view
mModulesListView->setColumnText(0,"Modules");
mModulesListView->setColumnText(0,tr("Modules"));
mModulesListView->clear();
mModulesListView->setSorting(-1);
mModulesListView->setRootIsDecorated(true);
Expand Down Expand Up @@ -160,7 +160,7 @@ QgsGrassTools::QgsGrassTools ( QgisApp *qgisApp, QgisIface *iface,
// Warning: if browser is on the first page modules are
// displayed over the browser
mBrowser = new QgsGrassBrowser ( mIface, this );
mTabWidget->addTab( mBrowser, "Browser" );
mTabWidget->addTab( mBrowser, tr("Browser") );

connect( mBrowser, SIGNAL(regionChanged()),
this, SLOT(emitRegionChanged()) );
Expand Down

0 comments on commit 4aeb352

Please sign in to comment.