blob: 597a548390d57a3a700adfa478b457fe81c12397 (
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 <qapplication.h>
#include <kcursor.h>
namespace mxcl
{
WaitCursor::WaitCursor()
{
QApplication::setOverrideCursor( KCursor::waitCursor() );
}
WaitCursor::~WaitCursor()
{
QApplication::restoreOverrideCursor();
}
}
|