~ubuntu-branches/ubuntu/saucy/kdepimlibs/saucy-proposed

« back to all changes in this revision

Viewing changes to akonadi/contact/editor/tagwidget.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell, Philip Muškovac, Jonathan Riddell
  • Date: 2012-12-18 23:09:08 UTC
  • mfrom: (1.1.87)
  • Revision ID: package-import@ubuntu.com-20121218230908-37rp2z0850hty80f
Tags: 4:4.9.95-0ubuntu1
[ Philip Muškovac ]
* Bump libakonadi-dev build-dep to >= 1.8.51
* Add Build-dep on libx11-dev

[ Jonathan Riddell ]
* New upstream RC release
* Add build-dep on nepomuk-core-dev
* Update kdepimlibs5-dev.install

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
#include <QWidget>
26
26
 
27
 
#include <nepomuk/tag.h>
 
27
#include <nepomuk2/tag.h>
28
28
 
29
29
class QHBoxLayout;
30
30
class QLabel;
38
38
    explicit TagWidget( QWidget *parent = 0 );
39
39
    ~TagWidget();
40
40
 
41
 
    void setTags( const QVector<Nepomuk::Tag> &tags );
42
 
    QVector<Nepomuk::Tag> tags() const;
 
41
    void setTags( const QVector<Nepomuk2::Tag> &tags );
 
42
    QVector<Nepomuk2::Tag> tags() const;
43
43
 
44
44
  private Q_SLOTS:
45
45
    void editTags();
50
50
    QToolButton *mEditButton;
51
51
    QLabel *mTagLabel;
52
52
 
53
 
    QVector<Nepomuk::Tag> mTags;
 
53
    QVector<Nepomuk2::Tag> mTags;
54
54
};
55
55
 
56
56
#endif