Translations:Development/Tutorials/Common Programming Mistakes/81/pt-br: Difference between revisions

From KDE TechBase
(Created page with "void MainWindow::initGUI() { /* Construct your widgets here. Note that the widgets you * construct here shouldn't require complex initialization * either, or yo...")
 
(No difference)

Latest revision as of 21:34, 14 February 2020

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Development/Tutorials/Common Programming Mistakes)
void MainWindow::initGUI()
{
   /* Construct your widgets here.  Note that the widgets you
     * construct here shouldn't require complex initialization
     * either, or you've defeated the purpose.
     * All you want to do is create your GUI objects and
     * QObject::connect
     * the appropriate signals to their slots.
     */
}

void MainWindow::initGUI() {

   /* Construct your widgets here.  Note that the widgets you
    * construct here shouldn't require complex initialization
    * either, or you've defeated the purpose.
    * All you want to do is create your GUI objects and
    * QObject::connect
    * the appropriate signals to their slots.
    */

}