Note class: renamed method "bool selected()" to "bool isSelected()"

In class "Note" renamed method "bool selected()" to "bool isSelected()"
in order to match coding style conventions.
This commit is contained in:
Tobias Doerffel
2009-04-17 15:11:41 +02:00
parent efb335cea7
commit 5828643582
2 changed files with 15 additions and 15 deletions

View File

@@ -120,7 +120,7 @@ public:
return (bool) ((int) ( *lhs ).pos() < (int) ( *rhs ).pos());
}
inline bool selected( void ) const
inline bool isSelected( void ) const
{
return m_selected;
}