Translations:Development/Architecture/KDE3/KHTML/10/pt-br: Difference between revisions

From KDE TechBase
(Created page with "QWidget::connect(html, SIGNAL(setTitle(const QString &)), html, SLOT(setCaption(const QString &))); html->show(); a.exec(); } </syntaxhighlight>")
 
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
QWidget::connect(html, SIGNAL(setTitle(const QString &)),
{ QWidget::connect(html, SIGNAL(setTitle(const QString &)),
                     html, SLOT(setCaption(const QString &)));
                     html, SLOT(setCaption(const QString &)));
     html->show();
     html->show();
     a.exec();
     a.exec();
}
}
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 20:20, 29 August 2014

{ QWidget::connect(html, SIGNAL(setTitle(const QString &)),

                    html, SLOT(setCaption(const QString &)));
   html->show();
   a.exec();

}

</syntaxhighlight>