From 82ace39b426a843382a6a809e7b66487c1412494 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 31 Dec 2012 22:27:26 +0300 Subject: Fix code style and compilation under windows. --- src/actionmanager.cpp | 3 +++ src/client.cpp | 4 ++++ src/gui/setup_touch.cpp | 2 -- src/gui/widgets/browserbox.cpp | 7 +++++-- src/gui/widgets/setuptouchitem.cpp | 9 +++++---- src/gui/widgets/setuptouchitem.h | 4 ++-- src/textparticle.cpp | 2 +- src/touchmanager.cpp | 1 + 8 files changed, 21 insertions(+), 11 deletions(-) (limited to 'src') diff --git a/src/actionmanager.cpp b/src/actionmanager.cpp index 761825f03..337fc4102 100644 --- a/src/actionmanager.cpp +++ b/src/actionmanager.cpp @@ -1073,6 +1073,9 @@ impHandler0(showKeyboard) { #ifdef ANDROID SDL_ANDROID_ToggleScreenKeyboardTextInput(nullptr); + return true; +#else + return false; #endif } diff --git a/src/client.cpp b/src/client.cpp index b21aa6970..ce265ee15 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -707,7 +707,11 @@ void Client::setEnv(const char *const name, const char *const value) { if (!name || !value) return; +#ifdef WIN32 + if (putenv((char*)(std::string(name) + "=" + value).c_str())) +#else if (setenv(name, value, 1)) +#endif logger->log("setenv failed: %s=%s", name, value); } diff --git a/src/gui/setup_touch.cpp b/src/gui/setup_touch.cpp index bd8214232..744be43d7 100644 --- a/src/gui/setup_touch.cpp +++ b/src/gui/setup_touch.cpp @@ -25,8 +25,6 @@ #include "configuration.h" -#include "utils/gettext.h" - #include "debug.h" static const int sizeListSize = 4; diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index 1551ae81d..26d446060 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -536,8 +536,11 @@ int BrowserBox::calcHeight() const signed char c = row.at(start + 2); bool valid; - const gcn::Color col[2] = {getThemeCharColor(c, valid), - getThemeCharColor(c | 0x80, valid)}; + const gcn::Color col[2] = + { + getThemeCharColor(c, valid), + getThemeCharColor(c | 0x80, valid) + }; if (c == '>') { diff --git a/src/gui/widgets/setuptouchitem.cpp b/src/gui/widgets/setuptouchitem.cpp index 06faf7b19..8fea0478e 100644 --- a/src/gui/widgets/setuptouchitem.cpp +++ b/src/gui/widgets/setuptouchitem.cpp @@ -39,7 +39,8 @@ class SortTouchActionFunctor final } } touchActionSorter; -TouchActionsModel::TouchActionsModel() +TouchActionsModel::TouchActionsModel() : + NamesModel() { std::vector data; @@ -66,14 +67,14 @@ TouchActionsModel::TouchActionsModel() } } -int TouchActionsModel::getActionFromSelection(int sel) +int TouchActionsModel::getActionFromSelection(const int sel) const { - if (sel < 0 || sel > mActionId.size()) + if (sel < 0 || sel > static_cast(mActionId.size())) return -1; return mActionId[sel]; } -int TouchActionsModel::getSelectionFromAction(int action) +int TouchActionsModel::getSelectionFromAction(const int action) const { std::map::const_iterator it = mActionToSelection.find(action); diff --git a/src/gui/widgets/setuptouchitem.h b/src/gui/widgets/setuptouchitem.h index 77eff2ae6..36770ae63 100644 --- a/src/gui/widgets/setuptouchitem.h +++ b/src/gui/widgets/setuptouchitem.h @@ -38,9 +38,9 @@ class TouchActionsModel final : public NamesModel virtual ~TouchActionsModel() { } - int getActionFromSelection(int sel); + int getActionFromSelection(const int sel) const; - int getSelectionFromAction(int action); + int getSelectionFromAction(const int action) const; private: std::vector mActionId; diff --git a/src/textparticle.cpp b/src/textparticle.cpp index 178a6a086..85d0d6738 100644 --- a/src/textparticle.cpp +++ b/src/textparticle.cpp @@ -71,7 +71,7 @@ bool TextParticle::draw(Graphics *graphics, int offsetX, int offsetY) const } gcn::Color color = *mColor; - color.a = (int)alpha; + color.a = static_cast(alpha); graphics->setColor(color); if (mOutline) diff --git a/src/touchmanager.cpp b/src/touchmanager.cpp index c70baace8..4d7c78db6 100644 --- a/src/touchmanager.cpp +++ b/src/touchmanager.cpp @@ -39,6 +39,7 @@ TouchManager::TouchManager() : mKeyboard(nullptr), mPad(nullptr), mAttack(nullptr), + mCancel(nullptr), mVertexes(new ImageCollection), mRedraw(true), mShowJoystick(false), -- cgit v1.2.3-60-g2f50