|
|
|
|
@ -1,3 +1,10 @@
|
|
|
|
|
/*
|
|
|
|
|
* SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
|
|
|
|
|
*
|
|
|
|
|
* Distributable under LGPL license.
|
|
|
|
|
* See terms of license at gnu.org.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package net.java.sip.communicator.impl.gui.main.history;
|
|
|
|
|
|
|
|
|
|
import java.awt.BorderLayout;
|
|
|
|
|
@ -12,6 +19,7 @@
|
|
|
|
|
import net.java.sip.communicator.impl.gui.main.ContactItem;
|
|
|
|
|
import net.java.sip.communicator.impl.gui.main.i18n.Messages;
|
|
|
|
|
import net.java.sip.communicator.impl.gui.main.utils.Constants;
|
|
|
|
|
import net.java.sip.communicator.impl.gui.main.utils.ImageLoader;
|
|
|
|
|
|
|
|
|
|
public class HistoryWindow extends JFrame {
|
|
|
|
|
|
|
|
|
|
@ -44,7 +52,7 @@ public HistoryWindow(){
|
|
|
|
|
this.setSize(Constants.HISTORY_WINDOW_WIDTH,
|
|
|
|
|
Constants.HISTORY_WINDOW_HEIGHT);
|
|
|
|
|
|
|
|
|
|
this.setIconImage(Constants.SIP_LOGO);
|
|
|
|
|
this.setIconImage(ImageLoader.getImage(ImageLoader.SIP_LOGO));
|
|
|
|
|
|
|
|
|
|
this.init();
|
|
|
|
|
}
|
|
|
|
|
|