diff options
| author | Robert Bieber <robby@bieberphoto.com> | 2010-06-06 01:51:23 +0000 |
|---|---|---|
| committer | Robert Bieber <robby@bieberphoto.com> | 2010-06-06 01:51:23 +0000 |
| commit | bc9b353c3e6f44d61fea7b352ccca915ef62a5d8 (patch) | |
| tree | eef725a502346abbb48079333f3fa348e7a8a369 /utils/themeeditor/skindocument.cpp | |
| parent | 5e412b37578c8766514560ea40f043dfe87d4335 (diff) | |
| download | rockbox-bc9b353c3e6f44d61fea7b352ccca915ef62a5d8.zip rockbox-bc9b353c3e6f44d61fea7b352ccca915ef62a5d8.tar.gz rockbox-bc9b353c3e6f44d61fea7b352ccca915ef62a5d8.tar.bz2 rockbox-bc9b353c3e6f44d61fea7b352ccca915ef62a5d8.tar.xz | |
Theme Editor: Altered the SkinDocument class' handling of tab titles and added a title to the confirm close dialog box, changed tab order in the EditorWindow class
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26607 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/skindocument.cpp')
| -rw-r--r-- | utils/themeeditor/skindocument.cpp | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/utils/themeeditor/skindocument.cpp b/utils/themeeditor/skindocument.cpp index 3fb7d48..aada24d 100644 --- a/utils/themeeditor/skindocument.cpp +++ b/utils/themeeditor/skindocument.cpp @@ -54,6 +54,7 @@ bool SkinDocument::requestClose() { /* Spawning the "Are you sure?" dialog */ QMessageBox confirm(this); + confirm.setWindowTitle(tr("Confirm Close")); confirm.setText(title + tr(" has been modified.")); confirm.setInformativeText(tr("Do you want to save your changes?")); confirm.setStandardButtons(QMessageBox::Save | QMessageBox::Discard @@ -109,21 +110,9 @@ void SkinDocument::codeChanged() model->changeTree(editor->document()->toPlainText().toAscii()); if(editor->document()->toPlainText() != saved) - { - if(title.length() > 0 && title[title.length() - 1] != '*') - { - title.append('*'); - emit titleChanged(title); - } - } + emit titleChanged(title + QChar('*')); else - { - if(title.length() > 0 && title[title.length() - 1] == '*') - { - title.chop(1); - emit titleChanged(title); - } - } + emit titleChanged(title); } void SkinDocument::save() |