rename interface configuration panel
[jSite2.git] / src / net / pterodactylus / jsite / gui / ConfigurationDialog.java
index ee8e471..1d0a4bf 100644 (file)
@@ -268,8 +268,8 @@ public class ConfigurationDialog extends JDialog implements I18nable {
                JTabbedPane tabbedPane = new JTabbedPane(SwingConstants.TOP, JTabbedPane.SCROLL_TAB_LAYOUT);
                contentPane.add(tabbedPane, BorderLayout.CENTER);
 
-               JComponent interfaceConfig = createInterfaceConfig();
-               tabbedPane.add(I18n.get("configurationDialog.page.interface.name"), interfaceConfig);
+               JComponent interfaceTweaksConfig = createInterfaceTweaksConfig();
+               tabbedPane.add(I18n.get("configurationDialog.page.interface.name"), interfaceTweaksConfig);
 
                JPanel buttonPanel = new JPanel(new FlowLayout(FlowLayout.TRAILING, 12, 12));
                contentPane.add(buttonPanel, BorderLayout.PAGE_END);
@@ -287,7 +287,7 @@ public class ConfigurationDialog extends JDialog implements I18nable {
         *
         * @return The interface configuration panel
         */
-       private JComponent createInterfaceConfig() {
+       private JComponent createInterfaceTweaksConfig() {
                JPanel interfaceConfigPanel = new JPanel(new GridBagLayout());
                interfaceConfigPanel.setBorder(BorderFactory.createEmptyBorder(12, 12, 12, 12));