~ubuntu-branches/ubuntu/natty/kdemultimedia/natty-proposed

« back to all changes in this revision

Viewing changes to juk/exampleoptions.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers
  • Date: 2011-05-26 02:41:36 UTC
  • mfrom: (0.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 108.
  • Revision ID: james.westby@ubuntu.com-20110526024136-jjwsigfy402jhupm
Tags: upstream-4.6.3
ImportĀ upstreamĀ versionĀ 4.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
{
28
28
    setupUi(this);
29
29
 
30
 
    setObjectName("example options widget");
 
30
    setObjectName( QLatin1String("example options widget" ));
31
31
}
32
32
 
33
33
void ExampleOptions::exampleSelectionChanged()
51
51
ExampleOptionsDialog::ExampleOptionsDialog(QWidget *parent) :
52
52
    QDialog(parent)
53
53
{
54
 
    setObjectName("example options dialog");
 
54
    setObjectName( QLatin1String("example options dialog" ));
55
55
    setWindowTitle(i18n("JuK"));
56
56
    QVBoxLayout *l = new QVBoxLayout(this);
57
57