Browse Source

fixes issue 688: windows no longer have titles

git-svn-id: http://svn.dmdirc.com/trunk@3242 00569f92-eb28-0410-84fd-f71c24880f
tags/0.6
Gregory Holmes 16 years ago
parent
commit
9a8e537b2e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/ui/swing/components/TextFrame.java

+ 1
- 1
src/com/dmdirc/ui/swing/components/TextFrame.java View File

@@ -192,7 +192,7 @@ public abstract class TextFrame extends JInternalFrame implements Window,
192 192
             /** {@inheritDoc} */
193 193
             @Override
194 194
             public void run() {
195
-                TextFrame.this.setTitle(title);
195
+                TextFrame.super.setTitle(title);
196 196
             }
197 197
         });
198 198
     }

Loading…
Cancel
Save