summaryrefslogtreecommitdiff
path: root/src/gui/inttextbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/inttextbox.cpp')
-rw-r--r--src/gui/inttextbox.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/gui/inttextbox.cpp b/src/gui/inttextbox.cpp
index e28040d2..16650799 100644
--- a/src/gui/inttextbox.cpp
+++ b/src/gui/inttextbox.cpp
@@ -23,13 +23,13 @@
#include "inttextbox.h"
-IntTextBox::IntTextBox()
- : value(0)
+IntTextBox::IntTextBox():
+ value(0)
{
}
-IntTextBox::IntTextBox(int i)
- : value(i)
+IntTextBox::IntTextBox(int i):
+ value(i)
{
}
@@ -72,5 +72,3 @@ void IntTextBox::setInt(int i)
setText(s.str());
setCaretPosition(s.str().length() + 1);
}
-
-