Revision: 6643
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=6643&view=rev
Author: gerdwagner
Date: 2012-07-20 18:57:50 +0000 (Fri, 20 Jul 2012)
Log Message:
-----------
Fixed layout problem in code completion preference panel.
Modified Paths:
--------------
trunk/sql12/doc/src/main/resources/changes.txt
trunk/sql12/plugins/codecompletion/src/main/java/net/sourceforge/squirrel_sql/plugins/codecompletion/prefs/CodeCompletionPreferencesPanel.java
Modified: trunk/sql12/doc/src/main/resources/changes.txt
===================================================================
--- trunk/sql12/doc/src/main/resources/changes.txt 2012-07-11 20:21:37 UTC (rev 6642)
+++ trunk/sql12/doc/src/main/resources/changes.txt 2012-07-20 18:57:50 UTC (rev 6643)
@@ -93,6 +93,8 @@
Bug fixes:
+Fixed layout problem in code completion preference panel.
+
Applied patch 3100757: squirrel-sql.bat broke if %TEMP% had white space. Thanks to Taneli Waltari for the patch.
Hibernate Plugin: Added missing HQL keyword 'by'. Will now be highlighted and available in HQL code completion.
Modified: trunk/sql12/plugins/codecompletion/src/main/java/net/sourceforge/squirrel_sql/plugins/codecompletion/prefs/CodeCompletionPreferencesPanel.java
===================================================================
--- trunk/sql12/plugins/codecompletion/src/main/java/net/sourceforge/squirrel_sql/plugins/codecompletion/prefs/CodeCompletionPreferencesPanel.java 2012-07-11 20:21:37 UTC (rev 6642)
+++ trunk/sql12/plugins/codecompletion/src/main/java/net/sourceforge/squirrel_sql/plugins/codecompletion/prefs/CodeCompletionPreferencesPanel.java 2012-07-20 18:57:50 UTC (rev 6643)
@@ -96,8 +96,6 @@
chkMatchCamelCase = new JCheckBox(s_stringMgr.getString("CodeCompletionPreferencesPanel.matchCamelCase"));
add(chkMatchCamelCase,gbc);
- gbc = new GridBagConstraints(0,12,1,1,2,2,GridBagConstraints.NORTHWEST, GridBagConstraints.BOTH, new Insets(15,5,5,5),0,0 );
- add(new JPanel(),gbc);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|