# HG changeset patch # User insilmaril # Date 1178203213 0 # Node ID 8fca3a710dc453453c26fb62e1d46c852fe8f757 # Parent 9c86935835a484fe3c7bf544f8104467588c8e3f Fixed window captions diff -r 9c86935835a4 -r 8fca3a710dc4 branchpropwindow.cpp --- a/branchpropwindow.cpp Wed May 02 15:31:20 2007 +0000 +++ b/branchpropwindow.cpp Thu May 03 14:40:13 2007 +0000 @@ -6,11 +6,15 @@ #include "settings.h" extern Settings settings; +extern QString vymName; + BranchPropertyWindow::BranchPropertyWindow (QWidget *parent): QDialog (parent) { ui.setupUi (this); + setCaption(vymName +" - " +tr ("Property Editor","Window caption")); + branch=NULL; mapEditor=NULL; diff -r 9c86935835a4 -r 8fca3a710dc4 demos/todo.vym Binary file demos/todo.vym has changed diff -r 9c86935835a4 -r 8fca3a710dc4 mainwindow.cpp --- a/mainwindow.cpp Wed May 02 15:31:20 2007 +0000 +++ b/mainwindow.cpp Thu May 03 14:40:13 2007 +0000 @@ -3346,7 +3346,7 @@ MapEditor *me=currentMapEditor(); if (!me) return; - historyWindow->setCaption (tr("History for %1").arg(currentMapEditor()->getFileName())); + historyWindow->setCaption (vymName + " - " +tr("History for %1").arg(currentMapEditor()->getFileName(),"Window Caption")); // updateActions is also called when NoteEditor is closed actionViewToggleNoteEditor->setOn (textEditor->isVisible()); diff -r 9c86935835a4 -r 8fca3a710dc4 version.h --- a/version.h Wed May 02 15:31:20 2007 +0000 +++ b/version.h Thu May 03 14:40:13 2007 +0000 @@ -6,7 +6,7 @@ #define __VYM_NAME "VYM" #define __VYM_VERSION "1.8.72" #define __VYM_CODENAME "Codename: 1.9.0-beta-1" -#define __VYM_BUILD_DATE "May 2, 2007" +#define __VYM_BUILD_DATE "May 3, 2007" bool checkVersion(const QString &);