You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by da...@apache.org on 2016/06/08 19:19:50 UTC

svn commit: r1747439 - /openoffice/trunk/main/connectivity/inc/connectivity/sqlparse.hxx

Author: damjan
Date: Wed Jun  8 19:19:50 2016
New Revision: 1747439

URL: http://svn.apache.org/viewvc?rev=1747439&view=rev
Log:
#i126917# windows build breaks in module connectivity/source/parse/sqliterator.cxx

Commit Patricia's initial broken patch which starts in the right direction,
and fix it in my next commit.

Patch by: pats
Review by: me


Modified:
    openoffice/trunk/main/connectivity/inc/connectivity/sqlparse.hxx

Modified: openoffice/trunk/main/connectivity/inc/connectivity/sqlparse.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/connectivity/inc/connectivity/sqlparse.hxx?rev=1747439&r1=1747438&r2=1747439&view=diff
==============================================================================
--- openoffice/trunk/main/connectivity/inc/connectivity/sqlparse.hxx (original)
+++ openoffice/trunk/main/connectivity/inc/connectivity/sqlparse.hxx Wed Jun  8 19:19:50 2016
@@ -37,8 +37,10 @@
 #include <com/sun/star/i18n/XCharacterClassification.hpp>
 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
 #include <com/sun/star/i18n/XLocaleData.hpp>
+#include <com/sun/star/lang/Locale.hpp>
 #include "connectivity/IParseContext.hxx"
 #include "connectivity/dbtoolsdllapi.hxx"
+#include "connectivity/sqlerror.hxx"
 #include <salhelper/singletonref.hxx>
 #include <osl/mutex.hxx>
 
@@ -130,7 +132,14 @@ namespace connectivity
 	//==========================================================================
 	//= OSQLParser
 	//==========================================================================
-    struct OSQLParser_Data;
+    struct OSQLParser_Data
+    {
+        ::com::sun::star::lang::Locale  aLocale;
+        ::connectivity::SQLError        aErrors;
+
+        ::connectivity::OSQLParser_Data( const Reference< XMultiServiceFactory >& _xServiceFactory );
+
+    };		
 	/** Parser for SQL92
 	*/
 	class OOO_DLLPUBLIC_DBTOOLS OSQLParser