diff options
| -rw-r--r-- | src/qmmp/output.h | 1 | ||||
| -rw-r--r-- | src/qmmpui/playlistmodel.h | 8 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/qmmp/output.h b/src/qmmp/output.h index 39bf678a5..16c438b96 100644 --- a/src/qmmp/output.h +++ b/src/qmmp/output.h @@ -32,7 +32,6 @@ class Output public: /*! * Object contsructor. - * @param parent Parent object. */ Output(); /*! diff --git a/src/qmmpui/playlistmodel.h b/src/qmmpui/playlistmodel.h index 37581a21a..fd3a9b8a4 100644 --- a/src/qmmpui/playlistmodel.h +++ b/src/qmmpui/playlistmodel.h @@ -69,9 +69,9 @@ struct SimpleSelection { return m_bottom - m_top + 1; } - int m_bottom; /*!< */ - int m_top; /*!< */ - int m_anchor; /*!< */ + int m_bottom; /*!< Bottom of the selection */ + int m_top; /*!< Top of the selection */ + int m_anchor; /*!< Main index of the selection */ QList<int> m_selected_indexes; /*!< Selected items numbers */ }; /*! @internal @@ -145,7 +145,7 @@ public: /*! * Sets current index. * Returns \b false if item with this index doesn't exist, otherwise returns \b true - * @param row Number of item. + * @param index Number of item. */ bool setCurrent (int index); /*! |
