[Projet64] Cleanup Notification Settings.cpp
This commit is contained in:
parent
5be42089b0
commit
ce062e70ed
|
@ -20,7 +20,7 @@ CNotificationSettings::~CNotificationSettings()
|
|||
{
|
||||
if (g_Settings)
|
||||
{
|
||||
g_Settings->UnregisterChangeCB(UserInterface_InFullScreen,this,(CSettings::SettingChangedFunc)StaticRefreshSettings);
|
||||
g_Settings->UnregisterChangeCB(UserInterface_InFullScreen, this, (CSettings::SettingChangedFunc)StaticRefreshSettings);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -12,12 +12,12 @@
|
|||
|
||||
class CNotificationSettings
|
||||
{
|
||||
static void StaticRefreshSettings (CNotificationSettings * _this)
|
||||
static void StaticRefreshSettings(CNotificationSettings * _this)
|
||||
{
|
||||
_this->RefreshSettings();
|
||||
}
|
||||
|
||||
void RefreshSettings ( void );
|
||||
void RefreshSettings(void);
|
||||
|
||||
static bool m_bInFullScreen;
|
||||
|
||||
|
@ -25,6 +25,6 @@ protected:
|
|||
CNotificationSettings();
|
||||
virtual ~CNotificationSettings();
|
||||
|
||||
void RegisterNotifications (void);
|
||||
inline bool InFullScreen ( void ) const { return m_bInFullScreen; }
|
||||
void RegisterNotifications(void);
|
||||
inline bool InFullScreen(void) const { return m_bInFullScreen; }
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue