]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsKernelEditorGraphic/Observable.cxx
Now the contour is created from the center of the initial port
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsKernelEditorGraphic / Observable.cxx
index c52934c2c3cfa1e1128a9a0f77811b2f69b5fb31..cf21b32e9990b87f06c58d19d23c45c006d67203 100644 (file)
@@ -59,14 +59,14 @@ namespace bbtk
 
        //=========================================================================
        
-       void Observable::notifyObservers(int idObservable,int command)
+       void Observable::notifyObservers(int idController,int command)
        {
                if(_changed)
                {
                        int i;
                        for(i=0;i<_observers.size();i++)
                        {
-                               _observers[i]->update(idObservable,command);
+                               _observers[i]->update(idController,command);
                        }
                        _changed=false;
                }