aboutsummaryrefslogtreecommitdiffstats
path: root/qt-gui.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-04-14 06:44:29 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-04-14 06:58:56 -0700
commitd8e11439ad27063b0dad05b2f8f0f4cd7f3e7de1 (patch)
tree22fae2f6ee0915afe9075ab6558882ded736ca1b /qt-gui.cpp
parentfc0e307f00ceb50771d1c7a1489c7b65721f4143 (diff)
downloadsubsurface-d8e11439ad27063b0dad05b2f8f0f4cd7f3e7de1.tar.gz
Undoing the last Qtr_ hack
The Qtr_ hack isn't needed as in commit 720fc15b2dcd ("Introduce QApplication") had already made sure that we are using gettext. I didn't revert the two commits as I wanted to keep the added header comments and fix the tooling in the Makefile as well. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-gui.cpp')
-rw-r--r--qt-gui.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/qt-gui.cpp b/qt-gui.cpp
index 1621317c2..745457763 100644
--- a/qt-gui.cpp
+++ b/qt-gui.cpp
@@ -25,7 +25,6 @@
#include "version.h"
#include "libdivecomputer.h"
#include "qt-ui/mainwindow.h"
-#include "qt-ui/common.h"
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gdk-pixbuf/gdk-pixdata.h>
@@ -1785,7 +1784,7 @@ void MainWindow::setCurrentFileName(const QString &fileName)
if (fileName == m_currentFileName) return;
m_currentFileName = fileName;
- QString title = Qtr_("Subsurface");
+ QString title = tr("Subsurface");
if (!m_currentFileName.isEmpty()) {
QFileInfo fileInfo(m_currentFileName);
title += " - " + fileInfo.fileName();
@@ -1798,7 +1797,7 @@ void MainWindow::on_actionOpen_triggered()
QString defaultFileName = QString::fromUtf8(prefs.default_filename);
QFileInfo fileInfo(defaultFileName);
- QFileDialog dialog(this, Qtr_("Open File"), fileInfo.path());
+ QFileDialog dialog(this, tr("Open File"), fileInfo.path());
dialog.setFileMode(QFileDialog::ExistingFile);
dialog.selectFile(defaultFileName);
dialog.setNameFilters(fileNameFilters());