From 1332abed112641e5de24311430088d82a8c8f631 Mon Sep 17 00:00:00 2001 From: Diadlo Date: Mon, 1 Aug 2016 11:21:10 +0300 Subject: [PATCH] docs(chatlog): Added leading stars --- src/chatlog/chatlinecontentproxy.cpp | 12 ++++++------ src/chatlog/chatlog.cpp | 6 +++--- src/chatlog/content/filetransferwidget.cpp | 2 +- src/chatlog/documentcache.cpp | 4 ++-- src/chatlog/pixmapcache.cpp | 4 ++-- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/chatlog/chatlinecontentproxy.cpp b/src/chatlog/chatlinecontentproxy.cpp index 6a26e9b81..0d243f7f7 100644 --- a/src/chatlog/chatlinecontentproxy.cpp +++ b/src/chatlog/chatlinecontentproxy.cpp @@ -25,12 +25,12 @@ #include /** -@enum ChatLineContentProxy::ChatLineContentProxyType -@brief Type tag to avoid dynamic_cast of contained QWidget* - -@value GenericType -@value FileTransferWidgetType = 0 -*/ + * @enum ChatLineContentProxy::ChatLineContentProxyType + * @brief Type tag to avoid dynamic_cast of contained QWidget* + * + * @value GenericType + * @value FileTransferWidgetType = 0 + */ ChatLineContentProxy::ChatLineContentProxy(QWidget* widget, ChatLineContentProxyType type, int minWidth, float widthInPercent) : widthPercent(widthInPercent) diff --git a/src/chatlog/chatlog.cpp b/src/chatlog/chatlog.cpp index 3cf83a46c..836b8b14b 100644 --- a/src/chatlog/chatlog.cpp +++ b/src/chatlog/chatlog.cpp @@ -34,9 +34,9 @@ #include /** -@var ChatLog::repNameAfter -@brief repetition interval sender name (sec) -*/ + * @var ChatLog::repNameAfter + * @brief repetition interval sender name (sec) + */ template T clamp(T x, T min, T max) diff --git a/src/chatlog/content/filetransferwidget.cpp b/src/chatlog/content/filetransferwidget.cpp index fade6857e..576d24d26 100644 --- a/src/chatlog/content/filetransferwidget.cpp +++ b/src/chatlog/content/filetransferwidget.cpp @@ -388,7 +388,7 @@ void FileTransferWidget::fileTransferRemotePausedUnpaused(ToxFile file, bool pau void FileTransferWidget::fileTransferBrokenUnbroken(ToxFile file, bool broken) { - /// TODO: Handle broken transfer differently once we have resuming code + /// @todo Handle broken transfer differently once we have resuming code if (broken) onFileTransferCancelled(file); } diff --git a/src/chatlog/documentcache.cpp b/src/chatlog/documentcache.cpp index 801ed8e33..2cd9ebad0 100644 --- a/src/chatlog/documentcache.cpp +++ b/src/chatlog/documentcache.cpp @@ -44,8 +44,8 @@ void DocumentCache::push(QTextDocument *doc) } /** -@brief Returns the singleton instance. -*/ + * @brief Returns the singleton instance. + */ DocumentCache &DocumentCache::getInstance() { static DocumentCache instance; diff --git a/src/chatlog/pixmapcache.cpp b/src/chatlog/pixmapcache.cpp index 17f755c9e..9a03b81ae 100644 --- a/src/chatlog/pixmapcache.cpp +++ b/src/chatlog/pixmapcache.cpp @@ -36,8 +36,8 @@ QPixmap PixmapCache::get(const QString &filename, QSize size) } /** -@brief Returns the singleton instance. -*/ + * @brief Returns the singleton instance. + */ PixmapCache &PixmapCache::getInstance() { static PixmapCache instance;