author | clem <clem> | 2004-06-17 23:11:25 (UTC) |
---|---|---|
committer | clem <clem> | 2004-06-17 23:11:25 (UTC) |
commit | d177fbbcdabe8568b394bc2a16ecc5895a4b659a (patch) (side-by-side diff) | |
tree | 9b8a98b949e3425c5512db166e1ca959ec8a9cfb /core/pim | |
parent | 237ab9ee408f861a0fb8c9f988cfcaa5db033dd1 (diff) | |
download | opie-d177fbbcdabe8568b394bc2a16ecc5895a4b659a.zip opie-d177fbbcdabe8568b394bc2a16ecc5895a4b659a.tar.gz opie-d177fbbcdabe8568b394bc2a16ecc5895a4b659a.tar.bz2 |
replaced tr( "" ) by "" (in order not to pollute the .ts translation files)
-rw-r--r-- | core/pim/addressbook/contacteditor.cpp | 2 | ||||
-rw-r--r-- | core/pim/osearch/mainwindow.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/pim/addressbook/contacteditor.cpp b/core/pim/addressbook/contacteditor.cpp index 9c13017..312c663 100644 --- a/core/pim/addressbook/contacteditor.cpp +++ b/core/pim/addressbook/contacteditor.cpp @@ -266,7 +266,7 @@ void ContactEditor::init() { l = new QLabel( tr( "Country" ), container ); gl->addWidget( l, 5, 0 ); cmbCountry = new QComboBox( TRUE, container ); - cmbCountry->insertItem( tr( "" ) ); + cmbCountry->insertItem( "" ); cmbCountry->insertItem( tr ( "United States" ) ); cmbCountry->insertItem( tr ( "United Kingdom" ) ); cmbCountry->insertItem( tr ( "Afghanistan" ) ); diff --git a/core/pim/osearch/mainwindow.cpp b/core/pim/osearch/mainwindow.cpp index 798e1f1..4589c9d 100644 --- a/core/pim/osearch/mainwindow.cpp +++ b/core/pim/osearch/mainwindow.cpp @@ -199,7 +199,7 @@ void MainWindow::makeMenu() //Clear text ClearSearchText = new QToolButton( searchBar, "ClearSearchText"); - ClearSearchText->setText( tr( "" ) ); + ClearSearchText->setText( "" ); ClearSearchText->setPixmap( image1 ); connect( searchEdit, SIGNAL( textChanged(const QString&) ),this, SLOT( setSearch(const QString&) ) ); |