aboutsummaryrefslogtreecommitdiffstats
path: root/textedit.cpp
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2012-10-24 22:43:21 +0200
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2012-10-24 22:43:21 +0200
commitfeb359bb3b06f584838f880df35e9fbafef7c14f (patch)
treec3934aecc929871a78f8c1f9da80b1e0e387ea8a /textedit.cpp
parentupdated TODO und some refactoring (diff)
downloadgpg4usb-feb359bb3b06f584838f880df35e9fbafef7c14f.tar.gz
gpg4usb-feb359bb3b06f584838f880df35e9fbafef7c14f.zip
newtab slot works again
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@996 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'textedit.cpp')
-rw-r--r--textedit.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/textedit.cpp b/textedit.cpp
index 8753cd7..98d974f 100644
--- a/textedit.cpp
+++ b/textedit.cpp
@@ -38,8 +38,10 @@ TextEdit::TextEdit()
connect(tabWidget, SIGNAL(tabCloseRequested(int)), this, SLOT(removeTab(int)));
slotNewEditorPageTab();
setAcceptDrops(false);
- QPushButton *newButton = new QPushButton("new",this);
- tabWidget->setCornerWidget(newButton,Qt::TopRightCorner);
+ QPushButton *newButton = new QPushButton(QIcon(":button_plus.png"), "");
+ tabWidget->setCornerWidget(newButton,Qt::TopLeftCorner);
+ connect(newButton, SIGNAL(clicked()), this, SLOT(slotNewEditorPageTab()));
+
}
void TextEdit::slotNewEditorPageTab()