You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
codeine/src/mxcl.library.cpp

20 lines
381 B

// (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();
}
}