summaryrefslogtreecommitdiff
path: root/src/gui/speechbubble.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-09 22:30:00 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-09 22:31:11 +0100
commit07f7d52f661a74e6d0c780ca53e724651e3dcc48 (patch)
treeb55b8c0d04a1544ace42f00642adfde4ad045d94 /src/gui/speechbubble.h
parent6c29cfa167820635ea602b5cc31dcfeb7b04478c (diff)
downloadmana-client-07f7d52f661a74e6d0c780ca53e724651e3dcc48.tar.gz
mana-client-07f7d52f661a74e6d0c780ca53e724651e3dcc48.tar.bz2
mana-client-07f7d52f661a74e6d0c780ca53e724651e3dcc48.tar.xz
mana-client-07f7d52f661a74e6d0c780ca53e724651e3dcc48.zip
Mostly whitespace fixes
Removed tab characters and trailing spaces and added spaces between "if(", "for(", "while(" and "switch(".
Diffstat (limited to 'src/gui/speechbubble.h')
-rw-r--r--src/gui/speechbubble.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/gui/speechbubble.h b/src/gui/speechbubble.h
index cd83a864..9606f8f7 100644
--- a/src/gui/speechbubble.h
+++ b/src/gui/speechbubble.h
@@ -19,8 +19,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef _LOM_SPEECHBUBBLE_H__
-#define _LOM_SPEECHBUBBLE_H__
+#ifndef SPEECHBUBBLE_H
+#define SPEECHBUBBLE_H
#include "scrollarea.h"
#include "textbox.h"
@@ -29,19 +29,18 @@
class SpeechBubble : public Window
{
public:
-
- SpeechBubble();
+ SpeechBubble();
void setCaption(const std::string &name,
const gcn::Color &color = 0x000000);
- void setText(std::string mText);
- void setLocation(int x, int y);
- unsigned int getNumRows();
+ void setText(std::string mText);
+ void setLocation(int x, int y);
+ unsigned int getNumRows();
private:
gcn::Label *mCaption;
- TextBox *mSpeechBox;
- ScrollArea *mSpeechArea;
+ TextBox *mSpeechBox;
+ ScrollArea *mSpeechArea;
};
#endif