diff --git a/headers/os/interface/Menu.h b/headers/os/interface/Menu.h index b4b6e6aa1c..73f3d926b4 100644 --- a/headers/os/interface/Menu.h +++ b/headers/os/interface/Menu.h @@ -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; diff --git a/headers/private/app/MessageUtils.h b/headers/private/app/MessageUtils.h index cdd8d36a32..920f2fbeff 100644 --- a/headers/private/app/MessageUtils.h +++ b/headers/private/app/MessageUtils.h @@ -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;