diff options
-rw-r--r-- | mainwindow.cpp | 2 | ||||
-rw-r--r-- | textedit.cpp | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp index abac5be..73cfb15 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -154,7 +154,7 @@ void MainWindow::createActions() newTabActShortcutList.append(QKeySequence (Qt::CTRL + Qt::Key_T)); newTabAct->setShortcuts(newTabActShortcutList); newTabAct->setToolTip(tr("Open a new file")); - connect(newTabAct, SIGNAL(triggered()), edit, SLOT(slotNewTab())); + connect(newTabAct, SIGNAL(triggered()), edit, SLOT(slotNewEditorPageTab())); openAct = new QAction(tr("&Open..."), this); openAct->setIcon(QIcon(":fileopen.png")); 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() |