diff options
| author | 2018-03-10 16:30:20 +0800 | |
|---|---|---|
| committer | 2018-04-09 11:56:41 +0200 | |
| commit | 182b6a1d020de836c9f635c581d7acba03f894ef (patch) | |
| tree | a9421d6644c75d998bd6cdff4f8c718579a127aa /src/modules/aliaseditor/AliasEditorWindow.cpp | |
| parent | AppVeyor: grab gettext from vcpkg and clean up a bit (#2364) (diff) | |
| download | KVIrc-182b6a1d020de836c9f635c581d7acba03f894ef.tar.gz KVIrc-182b6a1d020de836c9f635c581d7acba03f894ef.tar.bz2 KVIrc-182b6a1d020de836c9f635c581d7acba03f894ef.zip | |
AliasEditorWindow: Add "Export All to ..." button for more consistent UI
Diffstat (limited to 'src/modules/aliaseditor/AliasEditorWindow.cpp')
| -rw-r--r-- | src/modules/aliaseditor/AliasEditorWindow.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/aliaseditor/AliasEditorWindow.cpp b/src/modules/aliaseditor/AliasEditorWindow.cpp index 7870564c3..ee93c23b2 100644 --- a/src/modules/aliaseditor/AliasEditorWindow.cpp +++ b/src/modules/aliaseditor/AliasEditorWindow.cpp @@ -137,6 +137,9 @@ AliasEditorWidget::AliasEditorWidget(QWidget * par) m_pTreeWidget = new AliasEditorTreeWidget(box); + QPushButton * btn = new QPushButton(__tr2qs_ctx("&Export All to...", "editor"), box); + connect(btn, SIGNAL(clicked()), this, SLOT(exportAll())); + box = new KviTalVBox(m_pSplitter); KviTalHBox * hbox = new KviTalHBox(box); hbox->setSpacing(0); |
