diff widgets/PropertyStack.cpp @ 52:f2fe98a7c57e

* Use commands for add/delete pane in main window * Add compound command collection to command history (for add pane, import file etc) * Add hide/show pane and hidden pane list to PaneStack * Various other fixes
author Chris Cannam
date Mon, 13 Mar 2006 17:55:19 +0000
parents 2e2ad8510e52
children 01ab51f72e84
line wrap: on
line diff
--- a/widgets/PropertyStack.cpp	Fri Mar 10 17:37:45 2006 +0000
+++ b/widgets/PropertyStack.cpp	Mon Mar 13 17:55:19 2006 +0000
@@ -41,8 +41,8 @@
     connect(m_client, SIGNAL(propertyContainerNameChanged(PropertyContainer *)),
 	    this, SLOT(propertyContainerNameChanged(PropertyContainer *)));
 
-    connect(this, SIGNAL(propertyContainerSelected(PropertyContainer *)),
-	    m_client, SLOT(propertyContainerSelected(PropertyContainer *)));
+    connect(this, SIGNAL(propertyContainerSelected(View *, PropertyContainer *)),
+	    m_client, SLOT(propertyContainerSelected(View *, PropertyContainer *)));
 }
 
 void
@@ -160,7 +160,7 @@
 PropertyStack::selectedContainerChanged(int n)
 {
     if (n >= int(m_boxes.size())) return;
-    emit propertyContainerSelected(m_boxes[n]->getContainer());
+    emit propertyContainerSelected(m_client, m_boxes[n]->getContainer());
 }
 
 #ifdef INCLUDE_MOCFILES