diff --git a/src/net/java/sip/communicator/impl/gui/main/message/history/NavigationPanel.java b/src/net/java/sip/communicator/impl/gui/main/message/history/NavigationPanel.java
deleted file mode 100644
index 29ba35e30..000000000
--- a/src/net/java/sip/communicator/impl/gui/main/message/history/NavigationPanel.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * 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.message.history;
-
-import java.awt.*;
-import javax.swing.*;
-
-import net.java.sip.communicator.impl.gui.i18n.*;
-/**
- * The NavigationPanel is the panel where user could navigate through
- * the message history.
- *
- * @author Yana Stamcheva
- */
-public class NavigationPanel extends JPanel {
-
- private JButton nextPageButton = new JButton(Messages.getString("next"));
-
- private JButton previousPageButton = new JButton(Messages
- .getString("previous"));
-
- private JButton lastPageButton = new JButton(Messages.getString("last"));
-
- private JButton firstPageButton = new JButton(Messages.getString("first"));
-
- /**
- * Constructs the NavigationPanel by adding all navigation buttons.
- */
- public NavigationPanel() {
- super(new FlowLayout(FlowLayout.CENTER));
-
- this.add(firstPageButton);
- this.add(previousPageButton);
- this.add(nextPageButton);
- this.add(lastPageButton);
- }
-}