~ubuntu-branches/ubuntu/wily/ktexteditor/wily-proposed

« back to all changes in this revision

Viewing changes to src/script/katescript.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell, Jonathan Riddell, Scarlett Clark
  • Date: 2014-09-22 19:37:47 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140922193747-6vhh92mz3ci4fxu1
Tags: 5.2.0-0ubuntu1
[ Jonathan Riddell ]
* New upstream release
* Use pkg-kde-tools version 3 scripts

[ Scarlett Clark ]
* Add missing dependency libqt5xmlpatterns5-dev.
* Cleanup copyright + move copyright extra details to comment to silence
  space-in-std-shortname-in-dep5-copyright lintian error.  

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
        return m_kateVersion;
89
89
    }
90
90
 
91
 
    inline void setCatalog(const QString &catalog)
92
 
    {
93
 
        m_i18nCatalog = catalog;
94
 
    }
95
 
    inline const QString &catalog() const
96
 
    {
97
 
        return m_i18nCatalog;
98
 
    }
99
 
 
100
91
    inline void setScriptType(Kate::ScriptType scriptType)
101
92
    {
102
93
        m_scriptType = scriptType;
111
102
    QString m_author;         ///< the script author, e.g. "John Smith <john@example.com>"
112
103
    int m_revision;           ///< script revision, a simple number, e.g. 1, 2, 3, ...
113
104
    QString m_kateVersion;    ///< required katepart version
114
 
    QString m_i18nCatalog;        ///< i18n catalog
115
105
    Kate::ScriptType m_scriptType;  ///< the script type
116
106
};
117
107
//END