Translations:Development/Tutorials/Common Programming Mistakes/80/pt-br

From KDE TechBase
Revision as of 17:20, 22 April 2020 by Juliano Assis (talk | contribs) (Created page with "<syntaxhighlight lang="cpp-qt"> MainWindow::MainWindow() { initGUI(); QTimer::singleShot( 0, this, SLOT(initObject()) ); }")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<syntaxhighlight lang="cpp-qt"> MainWindow::MainWindow() {

   initGUI();
   QTimer::singleShot( 0, this, SLOT(initObject()) );

}