summaryrefslogtreecommitdiff
path: root/zen/process_priority.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <shieldwed@outlook.com>2016-10-29 11:41:53 +0200
committerDaniel Wilhelm <shieldwed@outlook.com>2016-10-29 11:41:53 +0200
commit7302bb4484d517a72cdffbd13ec7a9f2324cde01 (patch)
tree17d2964c6768d49510206836a496fb1802a63e08 /zen/process_priority.cpp
parent8.5 (diff)
downloadFreeFileSync-7302bb4484d517a72cdffbd13ec7a9f2324cde01.tar.gz
FreeFileSync-7302bb4484d517a72cdffbd13ec7a9f2324cde01.tar.bz2
FreeFileSync-7302bb4484d517a72cdffbd13ec7a9f2324cde01.zip
8.6
Diffstat (limited to 'zen/process_priority.cpp')
-rw-r--r--zen/process_priority.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/zen/process_priority.cpp b/zen/process_priority.cpp
index 7ef7bc0f..826cf857 100644
--- a/zen/process_priority.cpp
+++ b/zen/process_priority.cpp
@@ -15,7 +15,7 @@ using namespace zen;
#ifdef ZEN_WIN
-struct PreventStandby::Pimpl {};
+struct PreventStandby::Impl {};
PreventStandby::PreventStandby()
{
@@ -30,7 +30,7 @@ PreventStandby::~PreventStandby()
}
-struct ScheduleForBackgroundProcessing::Pimpl {};
+struct ScheduleForBackgroundProcessing::Impl {};
ScheduleForBackgroundProcessing::ScheduleForBackgroundProcessing()
@@ -46,13 +46,13 @@ ScheduleForBackgroundProcessing::~ScheduleForBackgroundProcessing()
}
#elif defined ZEN_LINUX
-struct PreventStandby::Pimpl {};
+struct PreventStandby::Impl {};
PreventStandby::PreventStandby() {}
PreventStandby::~PreventStandby() {}
//solution for GNOME?: http://people.gnome.org/~mccann/gnome-session/docs/gnome-session.html#org.gnome.SessionManager.Inhibit
-struct ScheduleForBackgroundProcessing::Pimpl {};
+struct ScheduleForBackgroundProcessing::Impl {};
ScheduleForBackgroundProcessing::ScheduleForBackgroundProcessing() {};
ScheduleForBackgroundProcessing::~ScheduleForBackgroundProcessing() {};
bgstack15