summaryrefslogtreecommitdiff
path: root/src/gui/speechbubble.h
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2009-02-04 11:46:03 -0700
committerIra Rice <irarice@gmail.com>2009-02-04 11:46:03 -0700
commit555e68e24f2bb7d38f7ce52ce9a43198c0ccedec (patch)
treef2ceff93ed6193933165e9fbd408a1df6a8b26e1 /src/gui/speechbubble.h
parent6110801764f588d0696e75645624be4869b99ee0 (diff)
downloadMana-555e68e24f2bb7d38f7ce52ce9a43198c0ccedec.tar.gz
Mana-555e68e24f2bb7d38f7ce52ce9a43198c0ccedec.tar.bz2
Mana-555e68e24f2bb7d38f7ce52ce9a43198c0ccedec.tar.xz
Mana-555e68e24f2bb7d38f7ce52ce9a43198c0ccedec.zip
Went through the gui folder and revised the include statements to not
include anything not needed by that specific widget or window. This appears to have cleaned up system performance a bit on my current setup, where it went from idling on 45% in game with opengl down to 30% now. Also moved iptostring to the tostring header, as importing all of network.h is a little overkill to use that function, and it goes along with the basic functions that are in that header file anyways. TODO: find out a way to get rid of warnings when a class doesn't use this function. Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/speechbubble.h')
-rw-r--r--src/gui/speechbubble.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/speechbubble.h b/src/gui/speechbubble.h
index 23733813..323e5cbb 100644
--- a/src/gui/speechbubble.h
+++ b/src/gui/speechbubble.h
@@ -20,13 +20,14 @@
* 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"
#include "window.h"
+class ScrollArea;
+class TextBox;
+
class SpeechBubble : public Window
{
public: