summaryrefslogtreecommitdiff
path: root/src/gui/popups/statuspopup.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-11-26 00:51:57 +0300
committerAndrei Karas <akaras@inbox.ru>2018-11-27 20:33:15 +0300
commit0c20db8d108c4123fcc3ecb343759e68567a4d4e (patch)
treef577edeae7b4866d68c084a1eaa229e98c80ea8f /src/gui/popups/statuspopup.cpp
parent2be4fc5b4eee97938657c9c8be73c4b91c8b9826 (diff)
downloadmv-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.gz
mv-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.bz2
mv-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.xz
mv-0c20db8d108c4123fcc3ecb343759e68567a4d4e.zip
Remove extra ; from different code.
Diffstat (limited to 'src/gui/popups/statuspopup.cpp')
-rw-r--r--src/gui/popups/statuspopup.cpp32
1 files changed, 16 insertions, 16 deletions
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()