Skip to content

Commit

Permalink
Applied patch #603. Thanks!
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/branches/Release-0_8_0@6617 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
homann committed Feb 17, 2007
1 parent 75ddee5 commit 53b04e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gui/qgsattributeactiondialog.cpp
Expand Up @@ -54,9 +54,9 @@ QgsAttributeActionDialog::QgsAttributeActionDialog(QgsAttributeAction* actions,
void QgsAttributeActionDialog::init()
{
Q3Header* header = attributeActionTable->horizontalHeader();
header->setLabel(0, "Name");
header->setLabel(1, "Action");
header->setLabel(2, "Capture");
header->setLabel(0, tr("Name") );
header->setLabel(1, tr("Action") );
header->setLabel(2, tr("Capture") );

attributeActionTable->setColumnStretchable(0, true);
attributeActionTable->setColumnStretchable(1, true);
Expand Down Expand Up @@ -139,7 +139,7 @@ void QgsAttributeActionDialog::browse()
// widget

QString action = QFileDialog::getOpenFileName(
this, "Select an action");
this, tr("Select an action","File dialog window title") );

if (!action.isNull())
actionAction->insert(action);
Expand Down

0 comments on commit 53b04e7

Please sign in to comment.