# HG changeset patch # User sheepluva # Date 1319153773 -7200 # Node ID 437116977d43564bcfd4e929a4966f293aea3290 # Parent 98486efeb0b709b8f04add3845a11140299902e3 comment fixes diff -r 98486efeb0b7 -r 437116977d43 QTfrontend/ui/widget/HistoryLineEdit.h --- a/QTfrontend/ui/widget/HistoryLineEdit.h Fri Oct 21 00:02:11 2011 +0200 +++ b/QTfrontend/ui/widget/HistoryLineEdit.h Fri Oct 21 01:36:13 2011 +0200 @@ -81,12 +81,12 @@ private: - int m_maxHistorySize; /// the maximum allowed size for the history - int m_curHistEntryIdx; /// the index of the displayed used entry + int m_maxHistorySize; ///< the maximum allowed size for the history + int m_curHistEntryIdx; ///< the index of the displayed used entry - QStringList * m_history; /// history of previous inputs + QStringList * m_history; ///< history of previous inputs - QMutex m_historyMutex; /// make history QStringList action thread-safe + QMutex m_historyMutex; ///< make history QStringList action thread-safe /** * @brief Navigates content history in the desired direction. diff -r 98486efeb0b7 -r 437116977d43 QTfrontend/ui/widget/SmartLineEdit.h --- a/QTfrontend/ui/widget/SmartLineEdit.h Fri Oct 21 00:02:11 2011 +0200 +++ b/QTfrontend/ui/widget/SmartLineEdit.h Fri Oct 21 01:36:13 2011 +0200 @@ -29,7 +29,7 @@ /** * @brief A {@link HistoryLineEdit} that features auto-completion with TAB key -* and clear with ESC key. + * and clear with ESC key. * * Notes: *