- added Version Info and About ToolTip

git-svn-id: http://moon:8086/svn/software/trunk/projects/FsTrack@185 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2015-01-31 14:29:37 +00:00
parent 7f94243ee4
commit daefae6a5b
3 changed files with 20 additions and 2 deletions
+3 -2
View File
@@ -78,8 +78,9 @@ public:
{
(void)commandLine;
String windowTitle = ProjectInfo::projectName + String( " v") + ProjectInfo::versionString;
// This method is where you should put your application's initialisation code..
mainWindow = new MainWindow();
mainWindow = new MainWindow(windowTitle);
}
void shutdown() override
@@ -113,7 +114,7 @@ public:
class MainWindow : public DocumentWindow
{
public:
MainWindow() : DocumentWindow (ProjectInfo::projectName,
MainWindow(String const &windowTitle) : DocumentWindow (windowTitle,
Colours::lightgrey,
DocumentWindow::allButtons)
{