Styling + CFNotificationName -> CFStringRef

This commit is contained in:
Louis-Bertrand Varin 2017-05-10 11:05:17 -04:00 committed by thez3ro
parent 533136fb0e
commit 970525cfd4
No known key found for this signature in database
GPG Key ID: F628F9E41DD7C073
4 changed files with 14 additions and 12 deletions

View File

@ -32,8 +32,9 @@ ScreenLockListenerMac* ScreenLockListenerMac::instance()
return m_ptr;
}
void ScreenLockListenerMac::notificationCenterCallBack(CFNotificationCenterRef /*center*/, void */*observer*/,
CFNotificationName /*name*/, const void */*object*/, CFDictionaryRef /*userInfo*/)
void ScreenLockListenerMac::notificationCenterCallBack(CFNotificationCenterRef, void*,
CFStringRef, const void*,
CFDictionaryRef)
{
instance()->onSignalReception();
}
@ -48,12 +49,12 @@ ScreenLockListenerMac::ScreenLockListenerMac(QWidget* parent)
return;
}
CFNotificationCenterAddObserver(
distCenter,
this, &ScreenLockListenerMac::notificationCenterCallBack,
screenIsLockedSignal,
nullptr,
CFNotificationSuspensionBehaviorDeliverImmediately);
CFNotificationCenterAddObserver(distCenter,
this,
&ScreenLockListenerMac::notificationCenterCallBack,
screenIsLockedSignal,
nullptr,
CFNotificationSuspensionBehaviorDeliverImmediately);
}
void ScreenLockListenerMac::onSignalReception()

View File

@ -29,8 +29,9 @@ class ScreenLockListenerMac: public ScreenLockListenerPrivate {
public:
static ScreenLockListenerMac* instance();
static void notificationCenterCallBack(CFNotificationCenterRef /*center*/, void */*observer*/,
CFNotificationName /*name*/, const void */*object*/, CFDictionaryRef /*userInfo*/);
static void notificationCenterCallBack(CFNotificationCenterRef center, void* observer,
CFStringRef name, const void* object,
CFDictionaryRef userInfo);
private:
ScreenLockListenerMac(QWidget* parent = nullptr);

View File

@ -57,7 +57,7 @@ ScreenLockListenerWin::~ScreenLockListenerWin()
}
}
bool ScreenLockListenerWin::nativeEventFilter(const QByteArray &eventType, void* message, long *)
bool ScreenLockListenerWin::nativeEventFilter(const QByteArray& eventType, void* message, long*)
{
if (eventType == "windows_generic_MSG" || eventType == "windows_dispatcher_MSG") {
MSG* m = static_cast<MSG*>(message);

View File

@ -29,7 +29,7 @@ class ScreenLockListenerWin : public ScreenLockListenerPrivate, public QAbstract
public:
explicit ScreenLockListenerWin(QWidget* parent = 0);
~ScreenLockListenerWin();
virtual bool nativeEventFilter(const QByteArray &eventType, void* message, long *) override;
virtual bool nativeEventFilter(const QByteArray &eventType, void* message, long*) override;
private:
void* m_powerNotificationHandle ;