diff options
Diffstat (limited to 'protocols/Steam/src')
-rw-r--r-- | protocols/Steam/src/main.cpp | 1 | ||||
-rw-r--r-- | protocols/Steam/src/steam_events.cpp | 4 | ||||
-rw-r--r-- | protocols/Steam/src/version.h | 1 |
3 files changed, 2 insertions, 4 deletions
diff --git a/protocols/Steam/src/main.cpp b/protocols/Steam/src/main.cpp index 4010b9e46f..0f14e6ec0e 100644 --- a/protocols/Steam/src/main.cpp +++ b/protocols/Steam/src/main.cpp @@ -12,7 +12,6 @@ PLUGININFOEX pluginInfo = PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
__DESCRIPTION,
__AUTHOR,
- __AUTHOREMAIL,
__COPYRIGHT,
__AUTHORWEB,
UNICODE_AWARE,
diff --git a/protocols/Steam/src/steam_events.cpp b/protocols/Steam/src/steam_events.cpp index 3697689ca4..ef2d59ed40 100644 --- a/protocols/Steam/src/steam_events.cpp +++ b/protocols/Steam/src/steam_events.cpp @@ -65,8 +65,8 @@ int CSteamProto::OnIdleChanged(WPARAM, LPARAM lParam) if (idle) { // User started being idle - MIRANDA_IDLE_INFO mii = { sizeof(mii) }; - CallService(MS_IDLE_GETIDLEINFO, 0, (LPARAM)&mii); + MIRANDA_IDLE_INFO mii; + Idle_GetInfo(mii); // Compute time when user really became idle m_idleTS = time(nullptr) - mii.idleTime * 60; diff --git a/protocols/Steam/src/version.h b/protocols/Steam/src/version.h index 52650230ab..3c8a5e4a9b 100644 --- a/protocols/Steam/src/version.h +++ b/protocols/Steam/src/version.h @@ -9,6 +9,5 @@ #define __FILENAME "Steam.dll"
#define __DESCRIPTION "Steam protocol support for Miranda NG."
#define __AUTHOR "Miranda NG Team, Robert Pösel"
-#define __AUTHOREMAIL ""
#define __AUTHORWEB "https://miranda-ng.org/p/Steam/"
#define __COPYRIGHT "© 2014-17 Miranda NG team"
|