Browse Source

Syntax fixes for NucleusLib.

Darryl Pogue 13 years ago
parent
commit
21afed6853
  1. 1
      Sources/Plasma/NucleusLib/inc/CMakeLists.txt
  2. 2
      Sources/Plasma/NucleusLib/pnInputCore/plKeyMap.h
  3. 2
      Sources/Plasma/NucleusLib/pnKeyedObject/plFixedKey.cpp
  4. 2
      Sources/Plasma/NucleusLib/pnModifier/plLogicModBase.h

1
Sources/Plasma/NucleusLib/inc/CMakeLists.txt

@ -1,5 +1,6 @@
include_directories("../../CoreLib") include_directories("../../CoreLib")
include_directories("../../NucleusLib") include_directories("../../NucleusLib")
include_directories("../../NucleusLib/inc")
set(pnNucleusInc_HEADERS set(pnNucleusInc_HEADERS
hsGMatState.h hsGMatState.h

2
Sources/Plasma/NucleusLib/pnInputCore/plKeyMap.h

@ -179,7 +179,7 @@ class plKeyMap : public plInputMap
void FindAllBindingsByKey( const plKeyCombo &combo, hsTArray<const plKeyBinding*> &result ) const; void FindAllBindingsByKey( const plKeyCombo &combo, hsTArray<const plKeyBinding*> &result ) const;
// Searches for the binding by console command. Returns nil if not found // Searches for the binding by console command. Returns nil if not found
const plKeyBinding* plKeyMap::FindConsoleBinding( const char *command ) const; const plKeyBinding* FindConsoleBinding( const char *command ) const;
// Make sure the given keys are clear of bindings, i.e. not used // Make sure the given keys are clear of bindings, i.e. not used
void EnsureKeysClear( const plKeyCombo &key1, const plKeyCombo &key2 ); void EnsureKeysClear( const plKeyCombo &key1, const plKeyCombo &key2 );

2
Sources/Plasma/NucleusLib/pnKeyedObject/plFixedKey.cpp

@ -119,7 +119,7 @@ class plFixedKeyValidator
private: private:
static plFixedKeyValidator fValidator; static plFixedKeyValidator fValidator;
plFixedKeyValidator::plFixedKeyValidator() plFixedKeyValidator()
{ {
// verify that each Seed is in the correct spot...via the enum... // verify that each Seed is in the correct spot...via the enum...
int i; int i;

2
Sources/Plasma/NucleusLib/pnModifier/plLogicModBase.h

@ -69,7 +69,7 @@ protected:
void CreateNotifyMsg(); void CreateNotifyMsg();
public: public:
friend plVolumeSensorConditionalObjectNoArbitration; friend class plVolumeSensorConditionalObjectNoArbitration;
plLogicModBase(); plLogicModBase();
~plLogicModBase(); ~plLogicModBase();
CLASSNAME_REGISTER( plLogicModBase ); CLASSNAME_REGISTER( plLogicModBase );

Loading…
Cancel
Save