Skip to content
Snippets Groups Projects
Commit f5198ab0 authored by GIRARDOT Raphael's avatar GIRARDOT Raphael Committed by MADELA Patrick
Browse files

some renaming

parent 7d902c65
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,6 @@ public interface IViewListener extends EventListener { ...@@ -17,6 +17,6 @@ public interface IViewListener extends EventListener {
* *
* @param event The {@link ViewEvent} that describes the concerned {@link IView} and changes * @param event The {@link ViewEvent} that describes the concerned {@link IView} and changes
*/ */
public void dockingChanged(ViewEvent event); public void viewChanged(ViewEvent event);
} }
...@@ -34,7 +34,7 @@ public class ViewListenerDelegate { ...@@ -34,7 +34,7 @@ public class ViewListenerDelegate {
} }
for (IViewListener listener : copy) { for (IViewListener listener : copy) {
if (listener != null) { if (listener != null) {
listener.dockingChanged(event); listener.viewChanged(event);
} }
} }
copy.clear(); copy.clear();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment