From 527b14e9d548c05336910cdee47c2e5218c06885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 9 Jan 2008 14:29:14 +0000 Subject: [PATCH] Renamed AttributeEditors.{cpp|h} to TypeEditors.{cpp|h}. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23308 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/diskprobe/AttributeWindow.cpp | 4 ++-- src/apps/diskprobe/Jamfile | 2 +- .../diskprobe/{AttributeEditors.cpp => TypeEditors.cpp} | 4 ++-- src/apps/diskprobe/{AttributeEditors.h => TypeEditors.h} | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) rename src/apps/diskprobe/{AttributeEditors.cpp => TypeEditors.cpp} (99%) rename src/apps/diskprobe/{AttributeEditors.h => TypeEditors.h} (73%) 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 */