~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to utilities/firstrun/metadatapage.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-12-21 23:19:11 UTC
  • mfrom: (1.2.33 upstream) (3.1.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20101221231911-z9jip7s5aht1jqn9
Tags: 2:1.7.0-1ubuntu1
* Merge from Debian Experimental. Remaining Ubuntu changes:
  - Export .pot name and copy to plugins in debian/rules
  - Version build-depends on kipi-plugins-dev to ensure build is against the
    same version on all archs
* Drop debian/patches/kubuntu_01_linker.diff, incoporated upstream
* Remove patches directory and unused patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
{
47
47
public:
48
48
 
49
 
    MetadataPagePriv()
 
49
    MetadataPagePriv() :
 
50
        doNothing(0),
 
51
        storeInFiles(0),
 
52
        metadataStorage(0)
50
53
    {
51
 
        doNothing       = 0;
52
 
        storeInFiles    = 0;
53
 
        metadataStorage = 0;
54
54
    }
55
55
 
56
56
    QRadioButton* doNothing;
60
60
};
61
61
 
62
62
MetadataPage::MetadataPage(KAssistantDialog* dlg)
63
 
            : AssistantDlgPage(dlg, i18n("<b>Configure Metadata Storage to Files</b>")), 
64
 
              d(new MetadataPagePriv)
 
63
    : AssistantDlgPage(dlg, i18n("<b>Configure Metadata Storage to Files</b>")),
 
64
      d(new MetadataPagePriv)
65
65
{
66
66
    KVBox* vbox    = new KVBox(this);
67
67
    QLabel* label1 = new QLabel(vbox);
99
99
    setPageWidget(vbox);
100
100
 
101
101
    QPixmap leftPix = KStandardDirs::locate("data","digikam/data/assistant-metadata.png");
102
 
    setLeftBottomPix(leftPix.scaledToWidth(128, Qt::SmoothTransformation)); 
 
102
    setLeftBottomPix(leftPix.scaledToWidth(128, Qt::SmoothTransformation));
103
103
}
104
104
 
105
105
MetadataPage::~MetadataPage()