summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-02-22 17:56:32 +0100
committerPhilipp Sehmisch <crush@themanaworld.org>2009-02-22 17:56:32 +0100
commit6250168c410843cce560197b1ae440d1c2a0ba32 (patch)
tree2f28bc09adea54d37c6b3342b9039ba841d7eada /src
parent68340bb2222890407b03e2dd7868c0e13a13a156 (diff)
downloadmana-client-6250168c410843cce560197b1ae440d1c2a0ba32.tar.gz
mana-client-6250168c410843cce560197b1ae440d1c2a0ba32.tar.bz2
mana-client-6250168c410843cce560197b1ae440d1c2a0ba32.tar.xz
mana-client-6250168c410843cce560197b1ae440d1c2a0ba32.zip
Renamed InfoParicleFont to InfoParticleFont (typo?)
Diffstat (limited to 'src')
-rw-r--r--src/gui/gui.cpp2
-rw-r--r--src/gui/gui.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp
index 431e4d2d..26192e26 100644
--- a/src/gui/gui.cpp
+++ b/src/gui/gui.cpp
@@ -112,7 +112,7 @@ Gui::Gui(Graphics *graphics):
{
const int fontSize = (int)config.getValue("fontSize", 11);
mGuiFont = new TrueTypeFont(path, fontSize);
- mInfoParicleFont = new TrueTypeFont(path, fontSize, 1);
+ mInfoParticleFont = new TrueTypeFont(path, fontSize, 1);
}
catch (gcn::Exception e)
{
diff --git a/src/gui/gui.h b/src/gui/gui.h
index d5680412..7483cb82 100644
--- a/src/gui/gui.h
+++ b/src/gui/gui.h
@@ -81,7 +81,7 @@ class Gui : public gcn::Gui
* you picked up, etc.
*/
gcn::Font* getInfoParticleFont() const
- { return mInfoParicleFont; }
+ { return mInfoParticleFont; }
/**
* Sets whether a custom cursor should be rendered.
@@ -114,7 +114,7 @@ class Gui : public gcn::Gui
private:
GuiConfigListener *mConfigListener;
gcn::Font *mGuiFont; /**< The global GUI font */
- gcn::Font *mInfoParicleFont; /**< Font for Info Paricles*/
+ gcn::Font *mInfoParticleFont; /**< Font for Info Paricles*/
bool mCustomCursor; /**< Show custom cursor */
ImageSet *mMouseCursors; /**< Mouse cursor images */
float mMouseCursorAlpha;