]> git.tdb.fi Git - libs/core.git/blobdiff - source/debug/errorreporter.cpp
Update naming of internal variables and functions
[libs/core.git] / source / debug / errorreporter.cpp
index d4d51bcc4610a82fc6a28b7d6611f2d68275dd0a..8f080a307c1dbebb64605d73ee92d33685d5d608 100644 (file)
@@ -3,17 +3,17 @@
 namespace Msp {
 namespace Debug {
 
-ErrorReporter *ErrorReporter::current = 0;
+ErrorReporter *ErrorReporter::_current = 0;
 
 ErrorReporter::ErrorReporter():
-       prev(current)
+       _prev(_current)
 {
-       current = this;
+       _current = this;
 }
 
 ErrorReporter::~ErrorReporter()
 {
-       current = prev;
+       _current = _prev;
 }
 
 } // namespace Debug