~sil/ubuntu-keyboard/numbers-on-top-row

« back to all changes in this revision

Viewing changes to src/lib/models/wordcandidate.h

  • Committer: Guenter Schwann
  • Date: 2013-11-13 15:36:39 UTC
  • mfrom: (101.4.5 keyboard-cleanups)
  • Revision ID: guenter.schwann@canonical.com-20131113153639-9i9irt1mle00vy1t
Remove some dead code

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#define MALIIT_KEYBOARD_WORDCANDIDATE_H
34
34
 
35
35
#include "models/area.h"
36
 
#include "models/label.h"
37
36
 
38
37
#include <QtCore>
39
38
 
52
51
private:
53
52
    QPoint m_origin;
54
53
    Area m_area;
55
 
    Label m_label;
 
54
    QString m_label;
56
55
    Source m_source;
57
56
    QString m_word;
58
57
 
71
70
    Area & rArea();
72
71
    void setArea(const Area &area);
73
72
 
74
 
    Label label() const;
75
 
    Label & rLabel();
76
 
    void setLabel(const Label &label);
 
73
    QString label() const;
 
74
    QString & rLabel();
 
75
    void setLabel(const QString &label);
77
76
 
78
77
    Source source() const;
79
78
    void setSource(Source source);