aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Holzmann <grholzi@users.sourceforge.net>2007-01-09 20:54:10 +0000
committerGeorg Holzmann <grholzi@users.sourceforge.net>2007-01-09 20:54:10 +0000
commit42134f79f1284f07246a7e9a5e7f158e815e497d (patch)
tree54c5da74a91efa2b10f0bb92de797e2b8626d59f
parent8dd8701ff50af3a98cf6cf55b32733af2d949508 (diff)
fix to be compatible with the pd-extended build system
svn path=/trunk/externals/grh/; revision=7260
-rwxr-xr-xPDContainer/src/PDContainer.cpp4
-rwxr-xr-xPDContainer/src/h_prioqueue.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/PDContainer/src/PDContainer.cpp b/PDContainer/src/PDContainer.cpp
index fc27477..8a62f8e 100755
--- a/PDContainer/src/PDContainer.cpp
+++ b/PDContainer/src/PDContainer.cpp
@@ -48,7 +48,7 @@ void h_multiset_setup();
void h_vector_setup();
void h_deque_setup();
void h_queue_setup();
-void h_priority_queue_setup();
+void h_prioqueue_setup();
void h_stack_setup();
void h_list_setup();
//-end-of-declaration----------------------------------
@@ -64,7 +64,7 @@ extern "C" void PDContainer_setup(void)
h_vector_setup();
h_deque_setup();
h_queue_setup();
- h_priority_queue_setup();
+ h_prioqueue_setup();
h_stack_setup();
h_list_setup();
//-end-----------------------------------------------
diff --git a/PDContainer/src/h_prioqueue.cpp b/PDContainer/src/h_prioqueue.cpp
index 7443ff6..0770ab0 100755
--- a/PDContainer/src/h_prioqueue.cpp
+++ b/PDContainer/src/h_prioqueue.cpp
@@ -216,7 +216,7 @@ static void *h_priority_queue_free(t_h_priority_queue *x)
return (void *)x;
}
-extern "C" void h_priority_queue_setup(void)
+extern "C" void h_prioqueue_setup(void)
{
// the object class
h_priority_queue_class = class_new(gensym("h_priority_queue"), (t_newmethod)h_priority_queue_new,