From fcfc0bfbcc57c09f0f20e77dc0dee335ae736135 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 30 Apr 2018 21:52:29 +0000 Subject: fix warnings on sunon compilation. --- src/gui/widgets/dropdown.cpp | 6 +++--- src/gui/widgets/popuplist.cpp | 4 ++-- src/utils/process.cpp | 8 +++++--- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/gui/widgets/dropdown.cpp b/src/gui/widgets/dropdown.cpp index eba9ab9dd..be1fbbb7c 100644 --- a/src/gui/widgets/dropdown.cpp +++ b/src/gui/widgets/dropdown.cpp @@ -54,7 +54,7 @@ static std::string const dropdownFiles[2] = DropDown::DropDown(const Widget2 *const widget, ListModel *const listModel, - const bool extended, + const bool isExtended, const Modal modal, ActionListener *const listener, const std::string &eventId) : @@ -64,7 +64,7 @@ DropDown::DropDown(const Widget2 *const widget, MouseListener(), FocusListener(), SelectionListener(), - mPopup(CREATEWIDGETR(PopupList, this, listModel, extended, modal)), + mPopup(CREATEWIDGETR(PopupList, this, listModel, isExtended, modal)), mShadowColor(getThemeColor(ThemeColorId::DROPDOWN_SHADOW, 255U)), mHighlightColor(getThemeColor(ThemeColorId::HIGHLIGHT, 255U)), mPadding(1), @@ -72,7 +72,7 @@ DropDown::DropDown(const Widget2 *const widget, mSpacing(0), mFoldedUpHeight(0), mSelectionListeners(), - mExtended(extended), + mExtended(isExtended), mDroppedDown(false), mPushed(false), mIsDragged(false) diff --git a/src/gui/widgets/popuplist.cpp b/src/gui/widgets/popuplist.cpp index 627a6cfe6..c6412a69b 100644 --- a/src/gui/widgets/popuplist.cpp +++ b/src/gui/widgets/popuplist.cpp @@ -33,12 +33,12 @@ PopupList::PopupList(DropDown *const widget, ListModel *const listModel, - const bool extended, + const bool isExtended, const Modal modal) : Popup("PopupList", "popuplist.xml"), FocusListener(), mListModel(listModel), - mListBox(extended ? CREATEWIDGETR(ExtendedListBox, + mListBox(isExtended ? CREATEWIDGETR(ExtendedListBox, widget, listModel, "extendedlistbox.xml", 0) : CREATEWIDGETR(ListBox, widget, listModel, "popuplistbox.xml")), diff --git a/src/utils/process.cpp b/src/utils/process.cpp index b669a3a64..ffe56c25e 100644 --- a/src/utils/process.cpp +++ b/src/utils/process.cpp @@ -35,9 +35,11 @@ PRAGMA48(GCC diagnostic pop) #include "debug.h" -#ifndef __native_client__ +#if defined(WIN32) || defined(__linux__) || \ + defined(__linux) || defined(__APPLE__) const int timeOut = 10; -#endif // __native_client__ +#endif // defined(WIN32) || defined(__linux__) || + // defined(__linux) || defined(__APPLE__) #ifdef WIN32 @@ -304,7 +306,7 @@ bool openBrowser(std::string url) return true; } #else // OTHER -bool openBrowser(std::string url) +bool openBrowser(std::string url A_UNUSED) { return false; } -- cgit v1.2.3-60-g2f50