diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-05-11 18:40:08 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-05-11 18:46:49 -0600 |
commit | 9c19ba0ce027fe987b101f14f35b765159947eb0 (patch) | |
tree | 2e09491ecd15c99c3cc45ebe57a8dc50c54c31d2 /src/gui/widgets/whispertab.cpp | |
parent | 39aa603099c27f9a9012a32218ea712f345c75e3 (diff) | |
download | mana-9c19ba0ce027fe987b101f14f35b765159947eb0.tar.gz mana-9c19ba0ce027fe987b101f14f35b765159947eb0.tar.bz2 mana-9c19ba0ce027fe987b101f14f35b765159947eb0.tar.xz mana-9c19ba0ce027fe987b101f14f35b765159947eb0.zip |
Switch Tab to a color pointer to update on the fly
Diffstat (limited to 'src/gui/widgets/whispertab.cpp')
-rw-r--r-- | src/gui/widgets/whispertab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/whispertab.cpp b/src/gui/widgets/whispertab.cpp index 17ee3fc4..23325108 100644 --- a/src/gui/widgets/whispertab.cpp +++ b/src/gui/widgets/whispertab.cpp @@ -35,7 +35,7 @@ WhisperTab::WhisperTab(const std::string &nick) : ChatTab(nick), mNick(nick) { - setTabColor(guiPalette->getColor(Palette::WHISPER)); + setTabColor(&guiPalette->getColor(Palette::WHISPER)); } WhisperTab::~WhisperTab() |