headers: Remove some extra semicolons.

Spotted by Clang.
This commit is contained in:
Augustin Cavalier
2018-12-09 23:00:47 -05:00
parent cb0977326d
commit 5dd66afb7d
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -245,7 +245,7 @@ private:
bool _SelectNextItem(BMenuItem* item, bool forward); bool _SelectNextItem(BMenuItem* item, bool forward);
BMenuItem* _NextItem(BMenuItem* item, bool forward) const; BMenuItem* _NextItem(BMenuItem* item, bool forward) const;
void _SetIgnoreHidden(bool ignoreHidden) void _SetIgnoreHidden(bool ignoreHidden)
{ fIgnoreHidden = ignoreHidden; }; { fIgnoreHidden = ignoreHidden; }
void _SetStickyMode(bool on); void _SetStickyMode(bool on);
bool _IsStickyMode() const; bool _IsStickyMode() const;
+3 -3
View File
@@ -77,10 +77,10 @@ public:
throw fError; throw fError;
} }
status_t Status() const { return fError >= B_OK ? B_OK : fError; }; status_t Status() const { return fError >= B_OK ? B_OK : fError; }
void SetSwap(bool yesNo) { fSwap = yesNo; }; void SetSwap(bool yesNo) { fSwap = yesNo; }
bool IsSwapping() const { return fSwap; }; bool IsSwapping() const { return fSwap; }
private: private:
BDataIO *fStream; BDataIO *fStream;