clean method signature to match the doc

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18824 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2006-09-13 13:30:33 +00:00
parent 55815ae60b
commit 769952f1a1
2 changed files with 4 additions and 4 deletions

View File

@ -35,8 +35,8 @@ public:
status_t SetProperties(const BMessage* properties);
status_t GetProperties(BMessage* properties) const;
status_t Register(void);
status_t Unregister(void);
status_t Register();
status_t Unregister();
private:

View File

@ -198,7 +198,7 @@ BMidiEndpoint::GetProperties(BMessage* _properties) const
status_t
BMidiEndpoint::Register(void)
BMidiEndpoint::Register()
{
if (IsRemote()) {
WARN("You cannot Register() remote endpoints");
@ -216,7 +216,7 @@ BMidiEndpoint::Register(void)
status_t
BMidiEndpoint::Unregister(void)
BMidiEndpoint::Unregister()
{
if (IsRemote()) {
WARN("You cannot Unregister() remote endpoints");