From b9fa1de9952be92c2432a7f11c0059490b56c9a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 19 Feb 2010 21:31:59 +0000 Subject: [PATCH] * Fixed incomplete cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35525 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/storage/Entry.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/headers/os/storage/Entry.h b/headers/os/storage/Entry.h index 1469c318c7..cac387db7d 100644 --- a/headers/os/storage/Entry.h +++ b/headers/os/storage/Entry.h @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009, Haiku, Inc. All Rights Reserved. + * Copyright 2002-2010, Haiku, Inc. All Rights Reserved. * Distributed under the terms of the MIT License. */ #ifndef _ENTRY_H @@ -59,21 +59,21 @@ public: status_t SetTo(const char* path, bool traverse = false); void Unset(); - status_t GetRef(entry_ref *ref) const; - status_t GetPath(BPath *path) const; - status_t GetParent(BEntry *entry) const; - status_t GetParent(BDirectory *dir) const; - status_t GetName(char *buffer) const; + status_t GetRef(entry_ref* ref) const; + status_t GetPath(BPath* path) const; + status_t GetParent(BEntry* entry) const; + status_t GetParent(BDirectory* dir) const; + status_t GetName(char* buffer) const; - status_t Rename(const char *path, bool clobber = false); - status_t MoveTo(BDirectory *dir, const char *path = NULL, - bool clobber = false); - status_t Remove(); + status_t Rename(const char* path, bool clobber = false); + status_t MoveTo(BDirectory* dir, const char* path = NULL, + bool clobber = false); + status_t Remove(); - bool operator==(const BEntry &item) const; - bool operator!=(const BEntry &item) const; + bool operator==(const BEntry& item) const; + bool operator!=(const BEntry& item) const; - BEntry &operator=(const BEntry &item); + BEntry& operator=(const BEntry& item); private: friend class BDirectory;