diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-01-13 09:37:17 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-01-13 09:37:17 +0100 |
commit | 61959f6a04c6a6712b5334ebd6bf21da4736431f (patch) | |
tree | f716e758cd5e57d472c1dc52116c28ed5afaa9b4 /src | |
parent | 1420656e08f65f3e5c963f82b10a718b8026d216 (diff) | |
download | mana-client-61959f6a04c6a6712b5334ebd6bf21da4736431f.tar.gz mana-client-61959f6a04c6a6712b5334ebd6bf21da4736431f.tar.bz2 mana-client-61959f6a04c6a6712b5334ebd6bf21da4736431f.tar.xz mana-client-61959f6a04c6a6712b5334ebd6bf21da4736431f.zip |
Compile fix for g++ 4.5
Error was:
emoteshortcut.cpp:29:1: error: 'EmoteShortcut::EmoteShortcut' names the
constructor, not the type
Diffstat (limited to 'src')
-rw-r--r-- | src/emoteshortcut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emoteshortcut.cpp b/src/emoteshortcut.cpp index 46e13782..80376983 100644 --- a/src/emoteshortcut.cpp +++ b/src/emoteshortcut.cpp @@ -26,7 +26,7 @@ #include "utils/stringutils.h" -EmoteShortcut::EmoteShortcut *emoteShortcut; +EmoteShortcut *emoteShortcut; EmoteShortcut::EmoteShortcut(): mEmoteSelected(0) |