1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

docs(chatlog): Added leading stars

This commit is contained in:
Diadlo 2016-08-01 11:21:10 +03:00
parent 15fb72a2c3
commit 1332abed11
No known key found for this signature in database
GPG Key ID: 5AF9F2E29107C727
5 changed files with 14 additions and 14 deletions

View File

@ -25,12 +25,12 @@
#include <QDebug>
/**
@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)

View File

@ -34,9 +34,9 @@
#include <QShortcut>
/**
@var ChatLog::repNameAfter
@brief repetition interval sender name (sec)
*/
* @var ChatLog::repNameAfter
* @brief repetition interval sender name (sec)
*/
template<class T>
T clamp(T x, T min, T max)

View File

@ -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);
}

View File

@ -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;

View File

@ -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;