summaryrefslogtreecommitdiff
path: root/src/gui/color.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-02-28 15:46:02 +0300
committerAndrei Karas <akaras@inbox.ru>2014-02-28 16:41:19 +0300
commitf146cd42ce84a08879eb286ecd2ed2aa8ad82300 (patch)
treef689f832f54f361be8cff61deb47c0e32febd486 /src/gui/color.cpp
parent409cee51fe11e2495a2741226432666a8702dceb (diff)
downloadplus-f146cd42ce84a08879eb286ecd2ed2aa8ad82300.tar.gz
plus-f146cd42ce84a08879eb286ecd2ed2aa8ad82300.tar.bz2
plus-f146cd42ce84a08879eb286ecd2ed2aa8ad82300.tar.xz
plus-f146cd42ce84a08879eb286ecd2ed2aa8ad82300.zip
fix code style.
Diffstat (limited to 'src/gui/color.cpp')
-rw-r--r--src/gui/color.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/color.cpp b/src/gui/color.cpp
index 9a0034257..aa9ffe840 100644
--- a/src/gui/color.cpp
+++ b/src/gui/color.cpp
@@ -86,9 +86,9 @@ Color::Color(const unsigned int color) :
}
Color::Color(const unsigned int ar,
- const unsigned int ag,
- const unsigned int ab,
- const unsigned int aa) :
+ const unsigned int ag,
+ const unsigned int ab,
+ const unsigned int aa) :
r(ar),
g(ag),
b(ab),
@@ -149,7 +149,7 @@ bool Color::operator!=(const Color& color) const
}
std::ostream& operator<<(std::ostream& out,
- const Color& color)
+ const Color& color)
{
out << "Color [r = "
<< color.r