blob: 45c8ce4ec8fe9542f601eb5fb3b0112bc0b44f2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// (C) 2005 Max Howell ([email protected])
// See COPYING file for licensing information
#include "mxcl.library.h"
#include <ntqapplication.h>
#include <kcursor.h>
namespace mxcl
{
WaitCursor::WaitCursor()
{
TQApplication::setOverrideCursor( KCursor::waitCursor() );
}
WaitCursor::~WaitCursor()
{
TQApplication::restoreOverrideCursor();
}
}
|