diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-10-09 19:44:51 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-10-09 19:44:51 +0000 |
commit | ab6aec8f791fbdb092555448a1ed2d8f36659b0c (patch) | |
tree | 6e03778e21c996fa141e827ae90bf62e64db2494 | |
parent | use dedicated copies of QTextCursor (diff) | |
download | gpg4usb-ab6aec8f791fbdb092555448a1ed2d8f36659b0c.tar.gz gpg4usb-ab6aec8f791fbdb092555448a1ed2d8f36659b0c.zip |
updated TODO und some refactoring
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@995 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r-- | TODO | 3 | ||||
-rw-r--r-- | textedit.cpp | 4 | ||||
-rw-r--r-- | textedit.h | 2 |
3 files changed, 5 insertions, 4 deletions
@@ -6,7 +6,7 @@ Release 0.4 - Refresh key from keyserver [DONE] - add find action in textedit [DONE] - BUG: hit strg+f, then hit escape -> text not editable anymore, same with not found expression - - When earch revious, text should be searched from end again, if no hit is found + - When search previous, text should be searched from end again, if no hit is found - save the search expression, so that it is automatically used next time - Change private key password - create revocation file @@ -32,6 +32,7 @@ Release 0.4 BUG: - check PGP-Mime +- for secret keys the name is not shown in details dialog Release 0.4.1 - Add default key functionality diff --git a/textedit.cpp b/textedit.cpp index 14dde4a..8753cd7 100644 --- a/textedit.cpp +++ b/textedit.cpp @@ -36,13 +36,13 @@ TextEdit::TextEdit() setLayout(layout); connect(tabWidget, SIGNAL(tabCloseRequested(int)), this, SLOT(removeTab(int))); - slotNewTab(); + slotNewEditorPageTab(); setAcceptDrops(false); QPushButton *newButton = new QPushButton("new",this); tabWidget->setCornerWidget(newButton,Qt::TopRightCorner); } -void TextEdit::slotNewTab() +void TextEdit::slotNewEditorPageTab() { QString header = tr("untitled") + QString::number(++countPage)+".txt"; @@ -137,7 +137,7 @@ public slots: * @details Adds a new tab with the title "untitled"+countpage+".txt" * Sets the focus to the new tab. Increase Tab-Count by one */ - void slotNewTab(); + void slotNewEditorPageTab(); /** * @details Adds a new tab with the given title and opens given html file. |