[haiku-commits] haiku: hrev45281 - src/add-ons/disk_systems/intel

  • From: axeld@xxxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Thu, 14 Feb 2013 14:34:52 +0100 (CET)

hrev45281 adds 1 changeset to branch 'master'
old head: 3722e6400443ac3a57b255188898dab89a5a9aa4
new head: 33b9016ddd9ba01103a2854ff08ba52a8d0cda0e
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=33b9016+%5E3722e64

----------------------------------------------------------------------------

33b9016: intel disk_system: Renamed file to match class name.
  
  * Renamed CreationParameterEditor.(cpp|h) to PrimaryParameterEditor.(cpp|h)
    as that's what the sole class in there is called.

                                   [ Axel Dörfler <axeld@xxxxxxxxxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev45281
Commit:      33b9016ddd9ba01103a2854ff08ba52a8d0cda0e
URL:         http://cgit.haiku-os.org/haiku/commit/?id=33b9016
Author:      Axel Dörfler <axeld@xxxxxxxxxxxxxxxx>
Date:        Thu Feb 14 13:31:54 2013 UTC

----------------------------------------------------------------------------

4 files changed, 7 insertions(+), 7 deletions(-)
src/add-ons/disk_systems/intel/Jamfile                          | 4 ++--
src/add-ons/disk_systems/intel/PartitionMapAddOn.cpp            | 2 +-
.../{CreationParameterEditor.cpp => PrimaryParameterEditor.cpp} | 2 +-
.../{CreationParameterEditor.h => PrimaryParameterEditor.h}     | 6 +++---

----------------------------------------------------------------------------

diff --git a/src/add-ons/disk_systems/intel/Jamfile 
b/src/add-ons/disk_systems/intel/Jamfile
index db47924..182225c 100644
--- a/src/add-ons/disk_systems/intel/Jamfile
+++ b/src/add-ons/disk_systems/intel/Jamfile
@@ -18,7 +18,7 @@ Addon <disk_system>intel :
        IntelDiskSystem.cpp
        ExtendedPartitionAddOn.cpp
        PartitionMapAddOn.cpp
-       CreationParameterEditor.cpp
+       PrimaryParameterEditor.cpp
 
        # kernel sources
        PartitionMap.cpp
@@ -29,5 +29,5 @@ Addon <disk_system>intel :
 DoCatalogs <disk_system>intel :
        x-vnd.Haiku-IntelDiskAddOn
        :
-       CreationParameterEditor.cpp
+       PrimaryParameterEditor.cpp
 ;
diff --git a/src/add-ons/disk_systems/intel/PartitionMapAddOn.cpp 
b/src/add-ons/disk_systems/intel/PartitionMapAddOn.cpp
index 1da8e2a..d9c1450 100644
--- a/src/add-ons/disk_systems/intel/PartitionMapAddOn.cpp
+++ b/src/add-ons/disk_systems/intel/PartitionMapAddOn.cpp
@@ -4,7 +4,6 @@
  */
 
 
-#include "CreationParameterEditor.h"
 #include "PartitionMapAddOn.h"
 
 #include <new>
@@ -17,6 +16,7 @@
 #include <AutoDeleter.h>
 
 #include "IntelDiskSystem.h"
+#include "PrimaryParameterEditor.h"
 
 
 //#define TRACE_PARTITION_MAP_ADD_ON
diff --git a/src/add-ons/disk_systems/intel/CreationParameterEditor.cpp 
b/src/add-ons/disk_systems/intel/PrimaryParameterEditor.cpp
similarity index 97%
rename from src/add-ons/disk_systems/intel/CreationParameterEditor.cpp
rename to src/add-ons/disk_systems/intel/PrimaryParameterEditor.cpp
index 75c3819..0d89a9c 100644
--- a/src/add-ons/disk_systems/intel/CreationParameterEditor.cpp
+++ b/src/add-ons/disk_systems/intel/PrimaryParameterEditor.cpp
@@ -5,7 +5,7 @@
  */
 
 
-#include "CreationParameterEditor.h"
+#include "PrimaryParameterEditor.h"
 
 #include <Catalog.h>
 #include <DiskDeviceTypes.h>
diff --git a/src/add-ons/disk_systems/intel/CreationParameterEditor.h 
b/src/add-ons/disk_systems/intel/PrimaryParameterEditor.h
similarity index 86%
rename from src/add-ons/disk_systems/intel/CreationParameterEditor.h
rename to src/add-ons/disk_systems/intel/PrimaryParameterEditor.h
index e165560..fad1f1c 100644
--- a/src/add-ons/disk_systems/intel/CreationParameterEditor.h
+++ b/src/add-ons/disk_systems/intel/PrimaryParameterEditor.h
@@ -3,8 +3,8 @@
  * Copyright 2009, Bryce Groff, brycegroff@xxxxxxxxx.
  * Distributed under the terms of the MIT License.
  */
-#ifndef _CREATION_PARAMETER_EDITOR
-#define _CREATION_PARAMETER_EDITOR
+#ifndef _PRIMARY_PARAMETER_EDITOR
+#define _PRIMARY_PARAMETER_EDITOR
 
 
 #include <PartitionParameterEditor.h>
@@ -32,4 +32,4 @@ private:
 };
 
 
-#endif // _CREATION_PARAMETER_EDITOR
+#endif // _PRIMARY_PARAMETER_EDITOR


Other related posts:

  • » [haiku-commits] haiku: hrev45281 - src/add-ons/disk_systems/intel - axeld