summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src_gui_kernel_qapplication_x11.cpp
blob: 2782200d8ddde086e089a5d2bb5f6eba5e261e88 (plain)
1
2
3
4
5
//! [0]
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
calculateHugeMandelbrot();              // lunch time...
QApplication::restoreOverrideCursor();
//! [0]