headers: Remove some extra semicolons.
Spotted by Clang.
This commit is contained in:
@@ -245,7 +245,7 @@ private:
|
||||
bool _SelectNextItem(BMenuItem* item, bool forward);
|
||||
BMenuItem* _NextItem(BMenuItem* item, bool forward) const;
|
||||
void _SetIgnoreHidden(bool ignoreHidden)
|
||||
{ fIgnoreHidden = ignoreHidden; };
|
||||
{ fIgnoreHidden = ignoreHidden; }
|
||||
void _SetStickyMode(bool on);
|
||||
bool _IsStickyMode() const;
|
||||
|
||||
|
||||
@@ -77,10 +77,10 @@ public:
|
||||
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; };
|
||||
bool IsSwapping() const { return fSwap; };
|
||||
void SetSwap(bool yesNo) { fSwap = yesNo; }
|
||||
bool IsSwapping() const { return fSwap; }
|
||||
|
||||
private:
|
||||
BDataIO *fStream;
|
||||
|
||||
Reference in New Issue
Block a user