summaryrefslogtreecommitdiff
path: root/src/plugins/bineditor
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2018-10-25 12:12:07 +0200
committerEike Ziller <eike.ziller@qt.io>2018-10-25 11:46:57 +0000
commit7d3686359aeba2b5ce4abac8fa18b81021e71ea0 (patch)
tree667593d1942895a3eef54f4ab88db5c884257979 /src/plugins/bineditor
parent83a63c7914365a5f3d1b0bb4f7418bd7c4f6f4b9 (diff)
downloadqt-creator-7d3686359aeba2b5ce4abac8fa18b81021e71ea0.tar.gz
Fix missing translation contexts
Change-Id: I4402157e7991ad0050333a34394b87ff3d6f4a1b Reviewed-by: Sergey Belyashov <Sergey.Belyashov@gmail.com> Reviewed-by: Robert Loehning <robert.loehning@qt.io> Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/bineditor')
-rw-r--r--src/plugins/bineditor/bineditorplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/bineditor/bineditorplugin.cpp b/src/plugins/bineditor/bineditorplugin.cpp
index d5e53e20b4..58a317d761 100644
--- a/src/plugins/bineditor/bineditorplugin.cpp
+++ b/src/plugins/bineditor/bineditorplugin.cpp
@@ -442,8 +442,8 @@ BinEditorPluginPrivate::BinEditorPluginPrivate()
ExtensionSystem::PluginManager::addObject(&m_factoryService);
ExtensionSystem::PluginManager::addObject(&m_editorFactory);
- m_undoAction = new QAction(tr("&Undo"), this);
- m_redoAction = new QAction(tr("&Redo"), this);
+ m_undoAction = new QAction(BinEditorPlugin::tr("&Undo"), this);
+ m_redoAction = new QAction(BinEditorPlugin::tr("&Redo"), this);
m_copyAction = new QAction(this);
m_selectAllAction = new QAction(this);