summaryrefslogtreecommitdiffstats
path: root/src/mxcl.library.cpp
blob: 786524a5b0ea03da2b1c02a2ff6f11e38308b873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// (C) 2005 Max Howell (max.howell@methylblue.com)
// See COPYING file for licensing information

#include "mxcl.library.h"
#include <tqapplication.h>
#include <kcursor.h>

namespace mxcl
{
   WaitCursor::WaitCursor()
   {
      TQApplication::setOverrideCursor( KCursor::waitCursor() );
   }

   WaitCursor::~WaitCursor()
   {
      TQApplication::restoreOverrideCursor();
   }
}