aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-03-29 07:49:45 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-03-29 07:49:45 +0000
commite2b36787821ae326ce27c94a997f97fac7ca46e5 (patch)
tree299c789dc5b8d96524ecfb6bcea67592f4029e99
parenta20fca7aef8f250b2a5b8531509689a9166f0d9d (diff)
downloadqmmp-e2b36787821ae326ce27c94a997f97fac7ca46e5.tar.gz
qmmp-e2b36787821ae326ce27c94a997f97fac7ca46e5.tar.bz2
qmmp-e2b36787821ae326ce27c94a997f97fac7ca46e5.zip
fixed api documentation
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3373 90c681e8-e032-0410-971d-27865f9a5e38
-rw-r--r--src/qmmp/output.h1
-rw-r--r--src/qmmpui/playlistmodel.h8
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);
/*!