Browse Source

comment changes

Dave Schuyler 24 years ago
parent
commit
5121be6abd

+ 1 - 1
panda/src/audio/audioManager.I

@@ -1,4 +1,4 @@
-// Filename: audio_manager.I
+// Filename: audioManager.I
 // Created by:  skyler (June 6, 2001)
 // Prior system by: cary
 //

+ 1 - 3
panda/src/audio/audioManager.h

@@ -1,4 +1,4 @@
-// Filename: audio_manager.h
+// Filename: audioManager.h
 // Created by:  skyler (June 6, 2001)
 // Prior system by: cary
 //
@@ -23,8 +23,6 @@
 #include "config_audio.h"
 #include "audioSound.h"
 
-class AudioManagerInternal;
-
 class EXPCL_PANDA AudioManager {
 PUBLISHED:
   // Create an AudioManager for each category of sounds you have.

+ 1 - 1
panda/src/audio/audioSound.cxx

@@ -1,4 +1,4 @@
-// Filename: audio_sound.cxx
+// Filename: audioSound.cxx
 // Created by:  skyler (June 6, 2001)
 // Prior system by: cary
 //

+ 1 - 6
panda/src/audio/audioSound.h

@@ -1,4 +1,4 @@
-// Filename: audio_sound.h
+// Filename: audioSound.h
 // Created by:  skyler (June 6, 2001)
 // Prior system by: cary
 //
@@ -93,11 +93,6 @@ public:
     return _type_handle;
   }
   static void init_type() {
-    /*
-    TypedObject::init_type();
-    register_type(_type_handle, "AudioSound",
-                  TypedObject::get_class_type());
-    */
     TypedReferenceCount::init_type();
     register_type(_type_handle, "AudioSound",
                   TypedReferenceCount::get_class_type());

+ 1 - 1
panda/src/audio/milesAudioManager.cxx

@@ -1,4 +1,4 @@
-// Filename: audio_manager.cxx
+// Filename: milesAudioManager.cxx
 // Created by:  skyler (June 6, 2001)
 // Prior system by: cary
 //

+ 1 - 1
panda/src/audio/milesAudioManager.h

@@ -1,4 +1,4 @@
-// Filename: MilesAudioManager.h
+// Filename: milesAudioManager.h
 // Created by:  skyler (June 6, 2001)
 // Prior system by: cary
 //

+ 1 - 1
panda/src/audio/milesAudioSound.I

@@ -1,4 +1,4 @@
-// Filename: milesAudioSound.cxx
+// Filename: milesAudioSound.I
 // Created by:  skyler (June 6, 2001)
 // Prior system by: cary
 //

+ 0 - 10
panda/src/audio/milesAudioSound.cxx

@@ -222,16 +222,6 @@ AudioSound::SoundStatus MilesAudioSound::status() const {
       return AudioSound::BAD;
   }
 }
-/*
-bool MilesAudioSound::operator==(const AudioSound& other) const {
-  // These sounds only match if they are the same instance (address):
-  return ((int)this) == ((int)&other);
-}
-
-bool MilesAudioSound::operator!=(const AudioSound& other) const {
-  return ! (*this == other);
-}
-*/
 
 
 #endif //]