summaryrefslogtreecommitdiffstats
path: root/sinksh/state.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sinksh/state.cpp')
-rw-r--r--sinksh/state.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/sinksh/state.cpp b/sinksh/state.cpp
index e03bf87..7fd3959 100644
--- a/sinksh/state.cpp
+++ b/sinksh/state.cpp
@@ -31,8 +31,7 @@ static bool s_hasEventLoop = false;
31class State::Private 31class State::Private
32{ 32{
33public: 33public:
34 Private() 34 Private() : outStream(stdout)
35 : outStream(stdout)
36 { 35 {
37 } 36 }
38 37
@@ -51,8 +50,7 @@ public:
51 QTextStream outStream; 50 QTextStream outStream;
52}; 51};
53 52
54State::State() 53State::State() : d(new Private)
55 : d(new Private)
56{ 54{
57} 55}
58 56
@@ -141,4 +139,3 @@ QString State::loggingLevel() const
141 QByteArray rv = Sink::Log::debugLevelName(Sink::Log::debugOutputLevel()); 139 QByteArray rv = Sink::Log::debugLevelName(Sink::Log::debugOutputLevel());
142 return rv.toLower(); 140 return rv.toLower();
143} 141}
144