~ubuntu-branches/debian/stretch/psi-plus/stretch

« back to all changes in this revision

Viewing changes to src/tools/optionstree/optionstree.h

  • Committer: Package Import Robot
  • Author(s): Boris Pek
  • Date: 2013-10-23 02:42:20 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20131023024220-bk2hyoenqkwfhpgw
Tags: 0.16.242-1
* New upstream release:
  fixed the problem of initialization of private conversation when both
  sides use libotr 4.0.x. (Closes: #724880)
* Update debian/watch: sources were moved.
* Delete psi-plus-content-downloader package and update all related files.
  This plugin is in psi-plus-plugins package now.
* Update debian/control:
  - remove all currently unneeded Replaces and Breaks fields
  - add build dependency on libidn11-dev
* Update debian/rules: simplify get-orig-source section.
* Update debian/copyright:
  - update Source field due to changes in sources location
  - remove copyright holders whose code was deleted from source tree
    (bundled libidn library was removed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
/**
27
27
 * \class OptionsTree
28
28
 * \brief Dynamic hierachical options structure
29
 
 * OptionsTree allows the dynamic creation of options (of type QVariant) 
 
29
 * OptionsTree allows the dynamic creation of options (of type QVariant)
30
30
 * and will save and load these to/from xml.
31
31
 */
32
32
class OptionsTree : public QObject
65
65
signals:
66
66
        void optionChanged(const QString& option);
67
67
        void optionAboutToBeInserted(const QString& option);
68
 
        void optionInserted(const QString& option);     
 
68
        void optionInserted(const QString& option);
69
69
        void optionAboutToBeRemoved(const QString& option);
70
70
        void optionRemoved(const QString& option);
71
71