diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-11-26 00:51:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-11-27 20:33:15 +0300 |
commit | 0c20db8d108c4123fcc3ecb343759e68567a4d4e (patch) | |
tree | f577edeae7b4866d68c084a1eaa229e98c80ea8f /src/gui/popups | |
parent | 2be4fc5b4eee97938657c9c8be73c4b91c8b9826 (diff) | |
download | plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.gz plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.bz2 plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.xz plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.zip |
Remove extra ; from different code.
Diffstat (limited to 'src/gui/popups')
-rw-r--r-- | src/gui/popups/popupmenu.cpp | 2 | ||||
-rw-r--r-- | src/gui/popups/statuspopup.cpp | 32 |
2 files changed, 17 insertions, 17 deletions
diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp index 1d4745110..c795a0384 100644 --- a/src/gui/popups/popupmenu.cpp +++ b/src/gui/popups/popupmenu.cpp @@ -1546,7 +1546,7 @@ void PopupMenu::handleLink(const std::string &link, // Unknown actions else if (link != "cancel") { - reportAlways("PopupMenu: Warning, unknown action '%s'", link.c_str()); + reportAlways("PopupMenu: Warning, unknown action '%s'", link.c_str()) } if (!mAllowCleanMenu) diff --git a/src/gui/popups/statuspopup.cpp b/src/gui/popups/statuspopup.cpp index 863dd38ef..dd2b317ab 100644 --- a/src/gui/popups/statuspopup.cpp +++ b/src/gui/popups/statuspopup.cpp @@ -59,27 +59,27 @@ void StatusPopup::postInit() Popup::postInit(); const int fontHeight = getFont()->getHeight(); int y = 0; - addLabel(0); - addLabel(1); - addLabel(2); - addLabel(3); + addLabel(0) + addLabel(1) + addLabel(2) + addLabel(3) y += 4; - addLabel(4); - addLabel(5); - addLabel(9); - addLabel(10); + addLabel(4) + addLabel(5) + addLabel(9) + addLabel(10) y += 4; - addLabel(6); - addLabel(7); + addLabel(6) + addLabel(7) y += 4; - addLabel(8); + addLabel(8) y += 4; - addLabel(12); - addLabel(13); - addLabel(14); - addLabel(15); + addLabel(12) + addLabel(13) + addLabel(14) + addLabel(15) y += 4; - addLabel(11); + addLabel(11) } StatusPopup::~StatusPopup() |