Small typo in a comment.

This commit is contained in:
Andrius Štikonas 2016-09-20 22:56:48 +01:00
parent 5e4b16b7fe
commit 23bf7585ed
2 changed files with 6 additions and 1 deletions

View File

@ -67,6 +67,7 @@ public:
virtual const QString& name() const {
return m_Name; /**< @return the Device's name, usually some manufacturer string */
}
virtual const QString& deviceNode() const {
return m_DeviceNode; /**< @return the Device's node, for example "/dev/sda" */
}
@ -74,6 +75,7 @@ public:
virtual PartitionTable* partitionTable() {
return m_PartitionTable; /**< @return the Device's PartitionTable */
}
virtual const PartitionTable* partitionTable() const {
return m_PartitionTable; /**< @return the Device's PartitionTable */
}
@ -85,6 +87,7 @@ public:
virtual void setIconName(const QString& name) {
m_IconName = name;
}
virtual const QString& iconName() const {
return m_IconName; /**< @return suggested icon name for this Device */
}
@ -92,6 +95,7 @@ public:
virtual SmartStatus& smartStatus() {
return *m_SmartStatus;
}
virtual const SmartStatus& smartStatus() const {
return *m_SmartStatus;
}
@ -103,6 +107,7 @@ public:
virtual qint32 logicalSize() const {
return m_LogicalSize;
}
virtual qint64 totalLogical() const {
return m_TotalLogical;
}

View File

@ -86,7 +86,7 @@ void LvmDevice::initPartitions()
}
/**
* @return a initialized Partition(LV) list
* @return an initialized Partition(LV) list
*/
const QList<Partition*> LvmDevice::scanPartitions(PartitionTable* pTable) const
{