diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-11-16 23:25:14 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-11-16 23:25:14 +0100 |
commit | d87d926d52721f6d8bd766025b8c1944a3366ca9 (patch) | |
tree | c78b594564374780d4b3ea0341f20539183f7438 /src/gui/speechbubble.cpp | |
parent | ff61662640c4053220464f34413568f06f51154a (diff) | |
download | mana-d87d926d52721f6d8bd766025b8c1944a3366ca9.tar.gz mana-d87d926d52721f6d8bd766025b8c1944a3366ca9.tar.bz2 mana-d87d926d52721f6d8bd766025b8c1944a3366ca9.tar.xz mana-d87d926d52721f6d8bd766025b8c1944a3366ca9.zip |
Whitespace and indentation fixes
Diffstat (limited to 'src/gui/speechbubble.cpp')
-rw-r--r-- | src/gui/speechbubble.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/speechbubble.cpp b/src/gui/speechbubble.cpp index d3ef7bbe..4168134a 100644 --- a/src/gui/speechbubble.cpp +++ b/src/gui/speechbubble.cpp @@ -29,19 +29,19 @@ SpeechBubble::SpeechBubble() { mSpeechBox = new TextBox(); mSpeechBox->setEditable(false); - mSpeechBox->setOpaque(false); + mSpeechBox->setOpaque(false); mSpeechArea = new ScrollArea(mSpeechBox); // Height == Top Graphic (14px) + 1 Row of Text (15px) + Bottom Graphic (17px) setContentSize(135, 46); - setTitleBarHeight(0); - loadSkin("graphics/gui/speechbubble.xml"); + setTitleBarHeight(0); + loadSkin("graphics/gui/speechbubble.xml"); mSpeechArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); mSpeechArea->setVerticalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); mSpeechArea->setDimension(gcn::Rectangle(4, 15, 130, 28)); - mSpeechArea->setOpaque(false); + mSpeechArea->setOpaque(false); add(mSpeechArea); |