diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-02-11 00:09:51 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-02-11 00:10:37 +0100 |
commit | 63ac001daa7dfc0735dfefd9c2829c8786b4edaf (patch) | |
tree | a5c749f1705d42acc3e1b37341e73f2674e811e0 /src | |
parent | dbc6444d3086fa1b7afca4605600a0a0ae8ca394 (diff) | |
download | mana-63ac001daa7dfc0735dfefd9c2829c8786b4edaf.tar.gz mana-63ac001daa7dfc0735dfefd9c2829c8786b4edaf.tar.bz2 mana-63ac001daa7dfc0735dfefd9c2829c8786b4edaf.tar.xz mana-63ac001daa7dfc0735dfefd9c2829c8786b4edaf.zip |
More capitalization fixes for 'color'
Hopefully these are the last ones. :)
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/setup_colors.cpp | 10 | ||||
-rw-r--r-- | src/gui/setup_colors.h | 2 | ||||
-rw-r--r-- | src/text.cpp | 4 | ||||
-rw-r--r-- | src/text.h | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/src/gui/setup_colors.cpp b/src/gui/setup_colors.cpp index 269f8fd1..372dbd17 100644 --- a/src/gui/setup_colors.cpp +++ b/src/gui/setup_colors.cpp @@ -47,11 +47,11 @@ Setup_Colors::Setup_Colors() : { setOpaque(false); - mcolorBox = new ListBox(textColor); - mcolorBox->setActionEventId("color_box"); - mcolorBox->addActionListener(this); + mColorBox = new ListBox(textColor); + mColorBox->setActionEventId("color_box"); + mColorBox->addActionListener(this); - mScroll = new ScrollArea(mcolorBox); + mScroll = new ScrollArea(mColorBox); mScroll->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); mPreview = new BrowserBox(BrowserBox::AUTO_WRAP); @@ -150,7 +150,7 @@ void Setup_Colors::action(const gcn::ActionEvent &event) { if (event.getId() == "color_box") { - mSelected = mcolorBox->getSelected(); + mSelected = mColorBox->getSelected(); int col = textColor->getColorAt(mSelected); char ch = textColor->getColorCharAt(mSelected); std::string msg; diff --git a/src/gui/setup_colors.h b/src/gui/setup_colors.h index 1e56cfa8..8fd1ba59 100644 --- a/src/gui/setup_colors.h +++ b/src/gui/setup_colors.h @@ -48,7 +48,7 @@ class Setup_Colors : public SetupTab, public gcn::ActionListener, void listen(const TextField *tf); private: - gcn::ListBox *mcolorBox; + gcn::ListBox *mColorBox; gcn::ScrollArea *mScroll; BrowserBox *mPreview; gcn::ScrollArea *mPreviewBox; diff --git a/src/text.cpp b/src/text.cpp index 5d88bd69..c4559879 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -39,7 +39,7 @@ Text::Text(const std::string &text, int x, int y, gcn::Graphics::Alignment alignment, gcn::Color color, bool isSpeech) : mText(text), - mcolor(color), + mColor(color), mIsSpeech(isSpeech) { if (textManager == 0) @@ -161,7 +161,7 @@ void Text::draw(gcn::Graphics *graphics, int xOff, int yOff) gcn::Graphics::LEFT); } - graphics->setColor(mcolor); + graphics->setColor(mColor); graphics->drawText(mText, mX - xOff, mY - yOff, gcn::Graphics::LEFT); } @@ -65,7 +65,7 @@ class Text int mXOffset; /**< The offset of mX from the desired x. */ static int mInstances; /**< Instances of text. */ std::string mText; /**< The text to display. */ - gcn::Color mcolor; /**< The color of the text. */ + gcn::Color mColor; /**< The color of the text. */ bool mIsSpeech; /**< Is this text a speech bubble? */ protected: |