List:Commits« Previous MessageNext Message »
From:jwinstead Date:September 11 2007 5:17am
Subject:Connector/ODBC 3.51 commit: r777 - in trunk: . setup
View as plain text  
Modified:
   trunk/ChangeLog
   trunk/setup/MYODBCSetupDataSourceDialog.cpp
Log:
Empty selection for database and character set comboboxes in setup
were set to " " instead of an empty string. (Bug #30568)


Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-09-10 21:59:30 UTC (rev 776)
+++ trunk/ChangeLog	2007-09-11 05:17:30 UTC (rev 777)
@@ -3,6 +3,8 @@
   Functionality added or changed:
 
   Bugs fixed:
+  * Empty selection for database and character set comboboxes in setup
+    were set to " " instead of an empty string. (Bug #30568)
 
 ----
 

Modified: trunk/setup/MYODBCSetupDataSourceDialog.cpp
===================================================================
--- trunk/setup/MYODBCSetupDataSourceDialog.cpp	2007-09-10 21:59:30 UTC (rev 776)
+++ trunk/setup/MYODBCSetupDataSourceDialog.cpp	2007-09-11 05:17:30 UTC (rev 777)
@@ -804,7 +804,7 @@
     SQLLEN      nCatalog;
     QString     stringConnectIn= buildConnectString();
 
-    stringlistDatabases += " ";
+    stringlistDatabases += "";
 
     if ( hDBC == SQL_NULL_HDBC )
     {
@@ -900,7 +900,7 @@
     SQLLEN      nCatalog;
     QString     stringConnectIn= buildConnectString();
 
-    stringlistDatabases += " ";
+    stringlistDatabases += "";
 
     if ( hDBC == SQL_NULL_HDBC )
     {

Thread
Connector/ODBC 3.51 commit: r777 - in trunk: . setupjwinstead11 Sep