summaryrefslogtreecommitdiffstats
path: root/src/streamwidget.cc
diff options
context:
space:
mode:
authorHong Jen Yee (PCMan)2016-09-01 14:16:55 +0200
committerHong Jen Yee (PCMan)2016-09-01 14:16:55 +0200
commit634af324510e1c479125c9bfb0ba0ffdd35b0bab (patch)
tree0ff62120c0b2cc6109abaaee535084eeca37f34a /src/streamwidget.cc
parentAdd missing ui files to CMakeLists.txt (diff)
downloadpavucontrol-slx-634af324510e1c479125c9bfb0ba0ffdd35b0bab.tar.gz
pavucontrol-slx-634af324510e1c479125c9bfb0ba0ffdd35b0bab.tar.xz
pavucontrol-slx-634af324510e1c479125c9bfb0ba0ffdd35b0bab.zip
Replace GNU gettext with Qt tr() in all places.
Diffstat (limited to 'src/streamwidget.cc')
-rw-r--r--src/streamwidget.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/streamwidget.cc b/src/streamwidget.cc
index a5510de..7385e17 100644
--- a/src/streamwidget.cc
+++ b/src/streamwidget.cc
@@ -26,7 +26,6 @@
#include "mainwindow.h"
#include "channelwidget.h"
-#include "i18n.h"
/*** StreamWidget ***/
StreamWidget::StreamWidget(MainWindow *parent) :
@@ -47,7 +46,7 @@ StreamWidget::StreamWidget(MainWindow *parent) :
#if 0
- terminate.set_label(_("Terminate"));
+ terminate.set_label(tr("Terminate").toUtf8().constData());
terminate.signal_activate().connect(sigc::mem_fun(*this, &StreamWidget::onKill));
contextMenu.append(terminate);
contextMenu.show_all();