1.1 --- a/branchpropwindow.cpp Wed May 02 15:31:20 2007 +0000
1.2 +++ b/branchpropwindow.cpp Thu May 03 14:40:13 2007 +0000
1.3 @@ -6,11 +6,15 @@
1.4 #include "settings.h"
1.5
1.6 extern Settings settings;
1.7 +extern QString vymName;
1.8 +
1.9
1.10 BranchPropertyWindow::BranchPropertyWindow (QWidget *parent): QDialog (parent)
1.11 {
1.12 ui.setupUi (this);
1.13
1.14 + setCaption(vymName +" - " +tr ("Property Editor","Window caption"));
1.15 +
1.16 branch=NULL;
1.17 mapEditor=NULL;
1.18
2.1 Binary file demos/todo.vym has changed
3.1 --- a/mainwindow.cpp Wed May 02 15:31:20 2007 +0000
3.2 +++ b/mainwindow.cpp Thu May 03 14:40:13 2007 +0000
3.3 @@ -3346,7 +3346,7 @@
3.4 MapEditor *me=currentMapEditor();
3.5 if (!me) return;
3.6
3.7 - historyWindow->setCaption (tr("History for %1").arg(currentMapEditor()->getFileName()));
3.8 + historyWindow->setCaption (vymName + " - " +tr("History for %1").arg(currentMapEditor()->getFileName(),"Window Caption"));
3.9
3.10 // updateActions is also called when NoteEditor is closed
3.11 actionViewToggleNoteEditor->setOn (textEditor->isVisible());
4.1 --- a/version.h Wed May 02 15:31:20 2007 +0000
4.2 +++ b/version.h Thu May 03 14:40:13 2007 +0000
4.3 @@ -6,7 +6,7 @@
4.4 #define __VYM_NAME "VYM"
4.5 #define __VYM_VERSION "1.8.72"
4.6 #define __VYM_CODENAME "Codename: 1.9.0-beta-1"
4.7 -#define __VYM_BUILD_DATE "May 2, 2007"
4.8 +#define __VYM_BUILD_DATE "May 3, 2007"
4.9
4.10
4.11 bool checkVersion(const QString &);