diff --git a/src/apps/diskprobe/AttributeWindow.cpp b/src/apps/diskprobe/AttributeWindow.cpp index e296f7279b..d396fb5cee 100644 --- a/src/apps/diskprobe/AttributeWindow.cpp +++ b/src/apps/diskprobe/AttributeWindow.cpp @@ -1,12 +1,12 @@ /* - * Copyright 2004-2006, Axel Dörfler, axeld@pinc-software.de. All rights reserved. + * Copyright 2004-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved. * Distributed under the terms of the MIT License. */ #include "AttributeWindow.h" -#include "AttributeEditors.h" #include "ProbeView.h" +#include "TypeEditors.h" #include #include diff --git a/src/apps/diskprobe/Jamfile b/src/apps/diskprobe/Jamfile index 38dd6c7f7b..622e3aac23 100644 --- a/src/apps/diskprobe/Jamfile +++ b/src/apps/diskprobe/Jamfile @@ -12,7 +12,7 @@ Application DiskProbe : ProbeWindow.cpp FileWindow.cpp AttributeWindow.cpp - AttributeEditors.cpp + TypeEditors.cpp ProbeView.cpp OpenWindow.cpp FindWindow.cpp diff --git a/src/apps/diskprobe/AttributeEditors.cpp b/src/apps/diskprobe/TypeEditors.cpp similarity index 99% rename from src/apps/diskprobe/AttributeEditors.cpp rename to src/apps/diskprobe/TypeEditors.cpp index 07e220a787..3acb00630a 100644 --- a/src/apps/diskprobe/AttributeEditors.cpp +++ b/src/apps/diskprobe/TypeEditors.cpp @@ -1,10 +1,10 @@ /* - * Copyright 2004-2006, Axel Dörfler, axeld@pinc-software.de. All rights reserved. + * Copyright 2004-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved. * Distributed under the terms of the MIT License. */ -#include "AttributeEditors.h" +#include "TypeEditors.h" #include "DataEditor.h" #ifdef HAIKU_TARGET_PLATFORM_HAIKU diff --git a/src/apps/diskprobe/AttributeEditors.h b/src/apps/diskprobe/TypeEditors.h similarity index 73% rename from src/apps/diskprobe/AttributeEditors.h rename to src/apps/diskprobe/TypeEditors.h index 499722486e..63e6304fd1 100644 --- a/src/apps/diskprobe/AttributeEditors.h +++ b/src/apps/diskprobe/TypeEditors.h @@ -1,9 +1,9 @@ /* - * Copyright 2004-2006, Axel Dörfler, axeld@pinc-software.de. All rights reserved. + * Copyright 2004-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved. * Distributed under the terms of the MIT License. */ -#ifndef ATTRIBUTE_EDITORS_H -#define ATTRIBUTE_EDITORS_H +#ifndef TYPE_EDITORS_H +#define TYPE_EDITORS_H #include @@ -23,4 +23,4 @@ class TypeEditorView : public BView { extern TypeEditorView *GetTypeEditorFor(BRect rect, DataEditor &editor); -#endif /* ATTRIBUTE_EDITORS_H */ +#endif /* TYPE_EDITORS_H */