diff options
Diffstat (limited to 'src/mxcl.library.cpp')
-rw-r--r-- | src/mxcl.library.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/mxcl.library.cpp b/src/mxcl.library.cpp new file mode 100644 index 0000000..597a548 --- /dev/null +++ b/src/mxcl.library.cpp @@ -0,0 +1,19 @@ +// (C) 2005 Max Howell ([email protected]) +// See COPYING file for licensing information + +#include "mxcl.library.h" +#include <qapplication.h> +#include <kcursor.h> + +namespace mxcl +{ + WaitCursor::WaitCursor() + { + QApplication::setOverrideCursor( KCursor::waitCursor() ); + } + + WaitCursor::~WaitCursor() + { + QApplication::restoreOverrideCursor(); + } +} |