Skip to content

Commit

Permalink
intel disk_system: Renamed file to match class name.
Browse files Browse the repository at this point in the history
* Renamed CreationParameterEditor.(cpp|h) to PrimaryParameterEditor.(cpp|h)
  as that's what the sole class in there is called.
  • Loading branch information
axeld committed Feb 14, 2013
1 parent 3722e64 commit 33b9016
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/add-ons/disk_systems/intel/Jamfile
Expand Up @@ -18,7 +18,7 @@ Addon <disk_system>intel :
IntelDiskSystem.cpp
ExtendedPartitionAddOn.cpp
PartitionMapAddOn.cpp
CreationParameterEditor.cpp
PrimaryParameterEditor.cpp

# kernel sources
PartitionMap.cpp
Expand All @@ -29,5 +29,5 @@ Addon <disk_system>intel :
DoCatalogs <disk_system>intel :
x-vnd.Haiku-IntelDiskAddOn
:
CreationParameterEditor.cpp
PrimaryParameterEditor.cpp
;
2 changes: 1 addition & 1 deletion src/add-ons/disk_systems/intel/PartitionMapAddOn.cpp
Expand Up @@ -4,7 +4,6 @@
*/


#include "CreationParameterEditor.h"
#include "PartitionMapAddOn.h"

#include <new>
Expand All @@ -17,6 +16,7 @@
#include <AutoDeleter.h>

#include "IntelDiskSystem.h"
#include "PrimaryParameterEditor.h"


//#define TRACE_PARTITION_MAP_ADD_ON
Expand Down
Expand Up @@ -5,7 +5,7 @@
*/


#include "CreationParameterEditor.h"
#include "PrimaryParameterEditor.h"

#include <Catalog.h>
#include <DiskDeviceTypes.h>
Expand Down
Expand Up @@ -3,8 +3,8 @@
* Copyright 2009, Bryce Groff, brycegroff@gmail.com.
* 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>
Expand Down Expand Up @@ -32,4 +32,4 @@ class PrimaryPartitionEditor : public BPartitionParameterEditor {
};


#endif // _CREATION_PARAMETER_EDITOR
#endif // _PRIMARY_PARAMETER_EDITOR

0 comments on commit 33b9016

Please sign in to comment.