~ubuntu-branches/ubuntu/lucid/konversation/lucid-updates

« back to all changes in this revision

Viewing changes to src/config/preferences.h

  • Committer: Bazaar Package Importer
  • Author(s): Modestas Vainius
  • Date: 2009-05-15 11:24:24 UTC
  • mfrom: (1.15.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 47.
  • Revision ID: james.westby@ubuntu.com-20090515112424-b74i26lciabf4qnk
Tags: 1.1.75+svn968012-1
* New upstream development snapshot:
  - Last Changed Author: hein
  - Last Changed Rev: 968012
  - Last Changed Date: 2009-05-14 21:03:55 +0300
* Update README.source.
* Use dh --quilt instead of custom patch handling, build depend on
  quilt 0.46-7~.
* Update patches to upstream changes.
* Update konversation.install: remove docs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
        static void setQuickButtonList(const QStringList newList);
101
101
        static void clearQuickButtonList();
102
102
 
103
 
        static const QStringList autoreplaceList();
104
 
        static const QStringList defaultAutoreplaceList();
105
 
        static void setAutoreplaceList(const QStringList newList);
 
103
        static const QList<QStringList> autoreplaceList();
 
104
        static const QList<QStringList> defaultAutoreplaceList();
 
105
        static void setAutoreplaceList(const QList<QStringList> newList);
106
106
        static void clearAutoreplaceList();
107
107
 
108
108
        static void addIdentity(IdentityPtr identity);
163
163
        QMap<int, QStringList> mNotifyList;  // network id, list of nicks
164
164
        QMap< int,QMap<QString,QString> > mChannelEncodingsMap;  // mChannelEncodingsMap[serverGroupdId][channelName]
165
165
        QStringList mQuickButtonList;
166
 
        QStringList mAutoreplaceList;
 
166
        QList<QStringList> mAutoreplaceList;
167
167
        QString mSortingOrder;
168
168
};
169
169
#endif