diff options
| author | 2011-04-07 23:32:38 +0000 | |
|---|---|---|
| committer | 2011-04-07 23:32:38 +0000 | |
| commit | a4039773e2454d5205ec373ce4ce20264a992086 (patch) | |
| tree | 895fe37ecce002ebda81c3ec4f2e5a679e1004a7 /src/modules/logview/LogViewWindow.h | |
| parent | kill typo (diff) | |
| download | KVIrc-a4039773e2454d5205ec373ce4ce20264a992086.tar.gz KVIrc-a4039773e2454d5205ec373ce4ce20264a992086.tar.bz2 KVIrc-a4039773e2454d5205ec373ce4ce20264a992086.zip | |
more work on #934: added export to html (wip) and improved the whole stuff
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5765 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/logview/LogViewWindow.h')
| -rw-r--r-- | src/modules/logview/LogViewWindow.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/modules/logview/LogViewWindow.h b/src/modules/logview/LogViewWindow.h index e9330fba8..839517d3f 100644 --- a/src/modules/logview/LogViewWindow.h +++ b/src/modules/logview/LogViewWindow.h @@ -88,7 +88,8 @@ public: */ LogFile(const QString & szName); private: - Type m_type; + Type m_eType; + QString m_szType; QString m_szFilename; bool m_bCompressed; QString m_szName; @@ -99,7 +100,13 @@ public: * \brief Returns the type of the log * \return Type */ - Type type() const { return m_type; }; + Type type() const { return m_eType; }; + + /** + * \brief Returns the type of the log + * \return const QString & + */ + const QString & typeString() const { return m_szType; }; /** * \brief Returns the filename of the log |
