~ubuntu-branches/ubuntu/trusty/digikam/trusty

« back to all changes in this revision

Viewing changes to utilities/advancedrename/parser/modifiers/replacemodifier.h

  • Committer: Bazaar Package Importer
  • Author(s): Luka Renko
  • Date: 2010-02-04 07:46:57 UTC
  • mfrom: (3.2.10 sid)
  • Revision ID: james.westby@ubuntu.com-20100204074657-hqzwjn4timlfw265
Tags: 2:1.1.0-1ubuntu1
* New upstream release:
  - Rename in BQM fails with multi dot names (LP: #501135)
  - Add collection with similar name fails (LP: #500581)
  - Add SMB folder error message (LP: #350280)
  - Zoom indicators indicate wrong magnification (LP: #510346)
* Merge with Debian, remaining changes:
  - Export .pot name and copy to plugins in debian/rules
  - Build-depend on libkipi7-dev, libkexiv2-8-dev and 
    libkdcraw8-dev (KDE 4.3 -> 4.4)
  - Build-depend on libmarble-dev (was disabled temporarily 
    in Debian due to 4.3.4 regression)

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
class KLineEdit;
33
33
class QCheckBox;
34
34
 
 
35
namespace Ui
 
36
{
 
37
    class ReplaceModifierDialogWidget;
 
38
}
 
39
 
35
40
namespace Digikam
36
41
{
37
42
 
44
49
    ReplaceDialog(ParseObject* parent);
45
50
    ~ReplaceDialog();
46
51
 
47
 
    KLineEdit* source;
48
 
    KLineEdit* destination;
49
 
    QCheckBox* caseSensitive;
 
52
    Ui::ReplaceModifierDialogWidget* const ui;
50
53
};
51
54
 
52
55
// --------------------------------------------------------