aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/logview/LogFile.h
diff options
context:
space:
mode:
authorGravatar IceN9ne2018-11-28 23:34:04 -0500
committerGravatar IceN9ne2018-11-28 23:34:04 -0500
commit73ffd3b5c5c595c79b7830834890e6adc34360b4 (patch)
treed61a2a34ee15d57f4ee870d4b0b757c53b1a5c7e /src/modules/logview/LogFile.h
parentUse override where possible and remove unnecessary usages of the virtual keyw... (diff)
downloadKVIrc-73ffd3b5c5c595c79b7830834890e6adc34360b4.tar.gz
KVIrc-73ffd3b5c5c595c79b7830834890e6adc34360b4.tar.bz2
KVIrc-73ffd3b5c5c595c79b7830834890e6adc34360b4.zip
Remove C-style typedef structs
Diffstat (limited to 'src/modules/logview/LogFile.h')
-rw-r--r--src/modules/logview/LogFile.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/modules/logview/LogFile.h b/src/modules/logview/LogFile.h
index 53281af8a..9b4984aa7 100644
--- a/src/modules/logview/LogFile.h
+++ b/src/modules/logview/LogFile.h
@@ -37,16 +37,15 @@
class QString;
/**
-* \typedef LogFileData
* \struct _LogFileData
* \brief A struct that contains the data of a log
*/
-typedef struct _LogFileData
+struct LogFileData
{
QString szName; /**< the name of the log */
QString szType; /**< the type of the log */
QString szFile; /**< the name of the exported log */
-} LogFileData;
+};
/**
* \class LogFile