diff options
author | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2012-10-15 17:56:15 +0000 |
---|---|---|
committer | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2012-10-15 17:56:15 +0000 |
commit | 8ab5ddd1bdf897612cc098bf3fe0caf610b4e40e (patch) | |
tree | b9e837b46f4b058d2cb0343503189822385e3f3e /src/net/java/sip/communicator/util | |
parent | 1f0a4b1a65ed7274ac9522619bbb1657ee03a613 (diff) | |
download | jitsi-8ab5ddd1bdf897612cc098bf3fe0caf610b4e40e.zip jitsi-8ab5ddd1bdf897612cc098bf3fe0caf610b4e40e.tar.gz jitsi-8ab5ddd1bdf897612cc098bf3fe0caf610b4e40e.tar.bz2 |
Commits work in progress on refactorying the call-related user interface for the purposes of audio and video telephony conferencing over single or multiple protocols and Jitsi VideoBridge.
Diffstat (limited to 'src/net/java/sip/communicator/util')
-rw-r--r-- | src/net/java/sip/communicator/util/swing/SIPCommFrame.java | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/net/java/sip/communicator/util/swing/SIPCommFrame.java b/src/net/java/sip/communicator/util/swing/SIPCommFrame.java index 0d68b39..fb981c1 100644 --- a/src/net/java/sip/communicator/util/swing/SIPCommFrame.java +++ b/src/net/java/sip/communicator/util/swing/SIPCommFrame.java @@ -571,17 +571,19 @@ public class SIPCommFrame } /** - * Overwrites the dispose method in order to save the size and the position - * of this window before closing it. + * {@inheritDoc} + * + * Overwrites the super's <tt>dispose</tt> method in order to save the size + * and the position of this <tt>Window</tt> before closing it. */ @Override public void dispose() { if (isSaveSizeAndLocation) - this.saveSizeAndLocation(); + saveSizeAndLocation(); /* - * The keybinding service will outlive us so don't let us retain our + * The KeybindingsService will outlive us so don't let us retain our * memory. */ if (bindings != null) |