summaryrefslogtreecommitdiff
path: root/zen/process_priority.cpp
diff options
context:
space:
mode:
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