From 1bcb5ceaffaf7e74d97e1b1e63f05612afe245eb Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Mon, 26 Dec 2016 20:16:05 -0800 Subject: [PATCH] quiet some warnings --- plugins/steamClient/src/SteamAPIPlugin.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/plugins/steamClient/src/SteamAPIPlugin.h b/plugins/steamClient/src/SteamAPIPlugin.h index 90fda06de3..0305a2d23f 100644 --- a/plugins/steamClient/src/SteamAPIPlugin.h +++ b/plugins/steamClient/src/SteamAPIPlugin.h @@ -19,19 +19,19 @@ class QUrl; class SteamAPIPlugin : public SteamClientPlugin { public: - bool isRunning(); + bool isRunning() override; - bool init(); - void shutdown(); + bool init() override; + void shutdown() override; - void runCallbacks(); + void runCallbacks() override; - void requestTicket(TicketRequestCallback callback); - void updateLocation(QString status, QUrl locationUrl); - void openInviteOverlay(); - void joinLobby(QString lobbyId); + void requestTicket(TicketRequestCallback callback) override; + void updateLocation(QString status, QUrl locationUrl) override; + void openInviteOverlay() override; + void joinLobby(QString lobbyId) override; - int getSteamVRBuildID(); + int getSteamVRBuildID() override; }; #endif // hifi_SteamAPIPlugin_h