Translations:Development/Tutorials/Common Programming Mistakes/80/pt-br: Difference between revisions
Appearance
	
	
|  Created page with "<syntaxhighlight lang="cpp-qt"> MainWindow::MainWindow() {     initGUI();     QTimer::singleShot( 0, this, SLOT(initObject()) ); }" |  Created page with "<syntaxhighlight lang="cpp-qt"> MainWindow::MainWindow() {     initGUI();     QTimer::singleShot( 0, this, SLOT(initObject()) ); }" | 
| (No difference) | |
Latest revision as of 17:20, 22 April 2020
<syntaxhighlight lang="cpp-qt"> MainWindow::MainWindow() {
initGUI(); QTimer::singleShot( 0, this, SLOT(initObject()) );
}