summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-08-29 01:24:49 +0300
committerAndrei Karas <akaras@inbox.ru>2016-08-29 01:24:49 +0300
commitca130a19b36a78c6a23aa56c6ea82eaa187b0a06 (patch)
treea22f311c5698f3f4ee370c0f1d3cb05230a1da95 /src/gui
parenteeffaaf3ab0593f815e772bfb523b9e7a94d45f5 (diff)
downloadplus-ca130a19b36a78c6a23aa56c6ea82eaa187b0a06.tar.gz
plus-ca130a19b36a78c6a23aa56c6ea82eaa187b0a06.tar.bz2
plus-ca130a19b36a78c6a23aa56c6ea82eaa187b0a06.tar.xz
plus-ca130a19b36a78c6a23aa56c6ea82eaa187b0a06.zip
Use time_t for time values.
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/dialogsmanager.cpp2
-rw-r--r--src/gui/fonts/font.h2
-rw-r--r--src/gui/gui.cpp2
-rw-r--r--src/gui/gui.h2
-rw-r--r--src/gui/viewport.h2
-rw-r--r--src/gui/widgets/browserbox.h2
-rw-r--r--src/gui/widgets/tabs/debugwindowtabs.h2
-rw-r--r--src/gui/widgets/textfield.h2
-rw-r--r--src/gui/windows/killstats.cpp2
-rw-r--r--src/gui/windows/killstats.h8
-rw-r--r--src/gui/windows/shopwindow.cpp2
-rw-r--r--src/gui/windows/shopwindow.h8
-rw-r--r--src/gui/windows/socialwindow.cpp2
-rw-r--r--src/gui/windows/socialwindow.h2
-rw-r--r--src/gui/windows/whoisonline.h2
15 files changed, 21 insertions, 21 deletions
diff --git a/src/gui/dialogsmanager.cpp b/src/gui/dialogsmanager.cpp
index 39db3a0e8..ec4da8119 100644
--- a/src/gui/dialogsmanager.cpp
+++ b/src/gui/dialogsmanager.cpp
@@ -58,7 +58,7 @@
OkDialog *deathNotice = nullptr;
DialogsManager *dialogsManager = nullptr;
OkDialog *weightNotice = nullptr;
-int weightNoticeTime = 0;
+time_t weightNoticeTime = 0;
#ifndef DYECMD
namespace
diff --git a/src/gui/fonts/font.h b/src/gui/fonts/font.h
index ef7ff9a5a..d8e16936f 100644
--- a/src/gui/fonts/font.h
+++ b/src/gui/fonts/font.h
@@ -144,7 +144,7 @@ class Font final
unsigned int mDeleteCounter;
// Word surfaces cache
- int mCleanTime;
+ time_t mCleanTime;
mutable TextChunkList mCache[CACHES_NUMBER];
};
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp
index 410891416..66ada43b2 100644
--- a/src/gui/gui.cpp
+++ b/src/gui/gui.cpp
@@ -345,7 +345,7 @@ void Gui::slowLogic()
if (windowContainer)
windowContainer->slowLogic();
- const int time = cur_time;
+ const time_t time = cur_time;
if (mTime != time)
{
logger->flush();
diff --git a/src/gui/gui.h b/src/gui/gui.h
index c27d7e8a8..9d42fcd3c 100644
--- a/src/gui/gui.h
+++ b/src/gui/gui.h
@@ -529,7 +529,7 @@ class Gui final
FocusListenerList mFocusListeners;
Color mForegroundColor;
Color mForegroundColor2;
- int mTime;
+ time_t mTime;
bool mCustomCursor; /**< Show custom cursor */
bool mDoubleClick;
};
diff --git a/src/gui/viewport.h b/src/gui/viewport.h
index d189b2415..802ba8ffe 100644
--- a/src/gui/viewport.h
+++ b/src/gui/viewport.h
@@ -238,7 +238,7 @@ class Viewport final : public WindowContainer,
int mViewXmax;
int mViewYmax;
- int mLocalWalkTime; /**< Timestamp before the next walk can be sent. */
+ time_t mLocalWalkTime; /**< Timestamp before the next walk can be sent. */
int mCameraRelativeX;
int mCameraRelativeY;
diff --git a/src/gui/widgets/browserbox.h b/src/gui/widgets/browserbox.h
index d0655631c..74acc8847 100644
--- a/src/gui/widgets/browserbox.h
+++ b/src/gui/widgets/browserbox.h
@@ -228,7 +228,7 @@ class BrowserBox final : public Widget,
int mHeight;
int mWidth;
int mYStart;
- int mUpdateTime;
+ time_t mUpdateTime;
int mPadding;
unsigned int mNewLinePadding;
int mItemPadding;
diff --git a/src/gui/widgets/tabs/debugwindowtabs.h b/src/gui/widgets/tabs/debugwindowtabs.h
index ca1527fa6..43292bcd5 100644
--- a/src/gui/widgets/tabs/debugwindowtabs.h
+++ b/src/gui/widgets/tabs/debugwindowtabs.h
@@ -68,7 +68,7 @@ class MapDebugTab final : public DebugTab
Label *mMapActorCountLabel A_NONNULLPOINTER;
Label *mXYLabel A_NONNULLPOINTER;
Label *mTexturesLabel A_NONNULLPOINTER;
- int mUpdateTime;
+ time_t mUpdateTime;
#ifdef DEBUG_DRAW_CALLS
Label *mDrawCallsLabel A_NONNULLPOINTER;
#endif
diff --git a/src/gui/widgets/textfield.h b/src/gui/widgets/textfield.h
index 89606d27c..aa016ef04 100644
--- a/src/gui/widgets/textfield.h
+++ b/src/gui/widgets/textfield.h
@@ -277,7 +277,7 @@ class TextField notfinal : public Widget,
static ImageRect skin;
int mMinimum;
int mMaximum;
- int mLastEventPaste;
+ time_t mLastEventPaste;
int mPadding;
bool mNumeric;
bool mLoseFocusOnTab;
diff --git a/src/gui/windows/killstats.cpp b/src/gui/windows/killstats.cpp
index dfc3c616e..68b57b077 100644
--- a/src/gui/windows/killstats.cpp
+++ b/src/gui/windows/killstats.cpp
@@ -289,7 +289,7 @@ void KillStats::gainXp(int xp)
void KillStats::recalcStats()
{
BLOCK_START("KillStats::recalcStats")
- const int curTime = cur_time;
+ const time_t curTime = cur_time;
// Need Update Exp Counter
if (curTime - m1minExpTime > 60)
diff --git a/src/gui/windows/killstats.h b/src/gui/windows/killstats.h
index d3b7a88b8..db41cf0e2 100644
--- a/src/gui/windows/killstats.h
+++ b/src/gui/windows/killstats.h
@@ -73,7 +73,7 @@ class KillStats final : public Window,
const int newVal) override final;
private:
- int mKillTimer; /**< Timer for kill stats. */
+ time_t mKillTimer; /**< Timer for kill stats. */
Button *mResetButton A_NONNULLPOINTER;
Button *mTimerButton A_NONNULLPOINTER;
Label *mLine1;
@@ -98,15 +98,15 @@ class KillStats final : public Window,
int mKillTCounter; /**< Timer Kill counter. */
int mExpTCounter; /**< Timer Exp counter. */
- int m1minExpTime;
+ time_t m1minExpTime;
int m1minExpNum;
int m1minSpeed;
- int m5minExpTime;
+ time_t m5minExpTime;
int m5minExpNum;
int m5minSpeed;
- int m15minExpTime;
+ time_t m15minExpTime;
int m15minExpNum;
int m15minSpeed;
};
diff --git a/src/gui/windows/shopwindow.cpp b/src/gui/windows/shopwindow.cpp
index cab3bcb37..e98d9ce1a 100644
--- a/src/gui/windows/shopwindow.cpp
+++ b/src/gui/windows/shopwindow.cpp
@@ -1030,7 +1030,7 @@ void ShopWindow::updateTimes()
BLOCK_END("ShopWindow::updateTimes")
}
-bool ShopWindow::checkFloodCounter(int &counterTime)
+bool ShopWindow::checkFloodCounter(time_t &counterTime)
{
if (!counterTime || counterTime > cur_time)
counterTime = cur_time;
diff --git a/src/gui/windows/shopwindow.h b/src/gui/windows/shopwindow.h
index 3123178e7..50d924a1f 100644
--- a/src/gui/windows/shopwindow.h
+++ b/src/gui/windows/shopwindow.h
@@ -136,7 +136,7 @@ class ShopWindow final : public Window,
const int mode);
void updateTimes();
- static bool checkFloodCounter(int &counterTime) A_WARN_UNUSED;
+ static bool checkFloodCounter(time_t &counterTime) A_WARN_UNUSED;
bool findShopItem(const ShopItem *const shopItem,
const int mode) const A_WARN_UNUSED;
@@ -188,9 +188,9 @@ class ShopWindow final : public Window,
std::string mTradeNick;
std::string mSellShopName;
int mSelectedItem;
- int mAnnonceTime;
- int mLastRequestTimeList;
- int mLastRequestTimeItem;
+ time_t mAnnonceTime;
+ time_t mLastRequestTimeList;
+ time_t mLastRequestTimeItem;
int mRandCounter;
int mTradeMoney;
int mSellShopSize;
diff --git a/src/gui/windows/socialwindow.cpp b/src/gui/windows/socialwindow.cpp
index 055b19ed8..0ab894ba6 100644
--- a/src/gui/windows/socialwindow.cpp
+++ b/src/gui/windows/socialwindow.cpp
@@ -464,7 +464,7 @@ void SocialWindow::updateActiveList()
void SocialWindow::slowLogic()
{
BLOCK_START("SocialWindow::slowLogic")
- const unsigned int nowTime = cur_time;
+ const time_t nowTime = cur_time;
if (mNeedUpdate && nowTime - mLastUpdateTime > 1)
{
mPlayers->updateList();
diff --git a/src/gui/windows/socialwindow.h b/src/gui/windows/socialwindow.h
index 4c2f82068..ad60c9ca8 100644
--- a/src/gui/windows/socialwindow.h
+++ b/src/gui/windows/socialwindow.h
@@ -160,7 +160,7 @@ class SocialWindow final : public Window,
TabbedArea *mTabs A_NONNULLPOINTER;
Map *mMap;
- int mLastUpdateTime;
+ time_t mLastUpdateTime;
int mPartyId;
bool mNeedUpdate;
bool mProcessedPortals;
diff --git a/src/gui/windows/whoisonline.h b/src/gui/windows/whoisonline.h
index 4bc7d0ca2..5233a17ad 100644
--- a/src/gui/windows/whoisonline.h
+++ b/src/gui/windows/whoisonline.h
@@ -134,7 +134,7 @@ class WhoIsOnline final : public Window,
UPDATE_LIST
};
- int mUpdateTimer;
+ time_t mUpdateTimer;
/** A thread that use libcurl to download updates. */
SDL_Thread *mThread;