~ubuntu-branches/ubuntu/maverick/kdemultimedia/maverick-proposed

« back to all changes in this revision

Viewing changes to juk/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2010-02-27 14:20:08 UTC
  • mfrom: (1.2.40 upstream)
  • Revision ID: james.westby@ubuntu.com-20100227142008-ebyk0usvqo08259o
Tags: 4:4.4.1-0ubuntu1
* New upstream bugfix release:
  - Bump build-depend versions

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
int main(int argc, char *argv[])
47
47
{
48
48
    KAboutData aboutData("juk", 0, ki18n("JuK"),
49
 
                         "3.4", ki18n(description), KAboutData::License_GPL,
 
49
                         "3.4.1", ki18n(description), KAboutData::License_GPL,
50
50
                         ki18n("© 2002 - 2009, Scott Wheeler"), KLocalizedString(),
51
51
                         "http://developer.kde.org/~wheeler/juk.html");
52
52
 
85
85
 
86
86
    // Create the main window and such
87
87
 
88
 
    JuK juk;
 
88
    JuK *juk = new JuK;
89
89
 
90
90
    KConfigGroup config(KGlobal::config(), "Settings");
91
91
    if(!config.readEntry("StartDocked", false))
92
 
        juk.show();
 
92
        juk->show();
93
93
 
94
94
    return a.exec();
95
95
}