diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-05-15 10:00:38 +0200 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-05-15 10:00:38 +0200 | 
| commit | 515b45636a232da39e9cd9bbe1f451819b849b8f (patch) | |
| tree | 2a6fc6650e9cd81755af0792203baf8130e46547 /plugingui | |
| parent | af7149c2a2ad58f3fb1508ed3da6a4b4223f9b6f (diff) | |
Start using C++-11.
Diffstat (limited to 'plugingui')
| -rw-r--r-- | plugingui/plugingui.cc | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/plugingui/plugingui.cc b/plugingui/plugingui.cc index 5408334..60a75fc 100644 --- a/plugingui/plugingui.cc +++ b/plugingui/plugingui.cc @@ -311,7 +311,7 @@ void PluginGUI::init()                                                 (void*)&closing);    window->setFixedSize(370, 330); -  window->setCaption("DrumGizmo v"VERSION); +  window->setCaption("DrumGizmo v" VERSION);    GUI::Label *lbl_title = new GUI::Label(window);    lbl_title->setText("DrumGizmo"); @@ -437,7 +437,7 @@ void PluginGUI::init()    l2->resize(window->width() - 40, 2);    GUI::Label *lbl_version = new GUI::Label(window); -  lbl_version->setText(".::. v"VERSION"  .::.  http://www.drumgizmo.org  .::.  GPLv3 .::."); +  lbl_version->setText(".::. v" VERSION "  .::.  http://www.drumgizmo.org  .::.  GPLv3 .::.");    lbl_version->move(16, 300);    lbl_version->resize(window->width(), 20);    /*  | 
