~ubuntu-branches/ubuntu/natty/digikam/natty

« back to all changes in this revision

Viewing changes to utilities/firstrun/rawpage.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Luka Renko
  • Date: 2009-11-12 18:02:13 UTC
  • mfrom: (1.2.24 upstream) (3.2.7 sid)
  • Revision ID: james.westby@ubuntu.com-20091112180213-8p63z8taug49ji3t
Tags: 2:1.0.0~beta6-1ubuntu1
* Merge with Debian, remaining changes:
  - Export .pot name and copy to plugins in debian/rules
  - Remove liblqr-1-0-dev from build-deps, not in main

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#include <kdialog.h>
37
37
#include <kconfig.h>
38
38
#include <kvbox.h>
39
 
 
40
39
#include <klocale.h>
41
40
#include <kstandarddirs.h>
42
41
#include <kapplication.h>
55
54
        rawHandling  = 0;
56
55
    }
57
56
 
58
 
    QRadioButton *openDirectly;
59
 
    QRadioButton *useRawImport;
 
57
    QRadioButton* openDirectly;
 
58
    QRadioButton* useRawImport;
60
59
 
61
 
    QButtonGroup *rawHandling;
 
60
    QButtonGroup* rawHandling;
62
61
};
63
62
 
64
63
RawPage::RawPage(KAssistantDialog* dlg)
69
68
    QLabel *label1 = new QLabel(vbox);
70
69
    label1->setWordWrap(true);
71
70
    label1->setText(i18n("<qt>"
72
 
                        "<p>Configure Raw File Handling.</p>"
73
71
                        "<p>Set here how you want to open Raw images in the editor:</p>"
74
72
                        "</qt>"));
75
73