diff options
author | Ocke Janssen <oj@openoffice.org> | 2001-02-14 13:39:23 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2001-02-14 13:39:23 +0000 |
commit | afbfc565f2d333622bed050db54359d2d5263bfe (patch) | |
tree | c44584dc26b83f7839eb36abe329b27924b8e524 /dbaccess/source/ui/inc/querycontroller.hxx | |
parent | 1337935489fc4df1846cff1acb80e3829a58fe80 (diff) |
some changes
Diffstat (limited to 'dbaccess/source/ui/inc/querycontroller.hxx')
-rw-r--r-- | dbaccess/source/ui/inc/querycontroller.hxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/dbaccess/source/ui/inc/querycontroller.hxx b/dbaccess/source/ui/inc/querycontroller.hxx index 8d622cdaf06e..8244aa3c75d6 100644 --- a/dbaccess/source/ui/inc/querycontroller.hxx +++ b/dbaccess/source/ui/inc/querycontroller.hxx @@ -37,6 +37,9 @@ #ifndef DBAUI_JOINTABLEVIEW_HXX #include "JoinTableView.hxx" #endif +#ifndef DBAUI_QUERYDESIGNCONTEXT_HXX +#include "ParseContext.hxx" +#endif class VCLXWindow; @@ -56,7 +59,8 @@ namespace dbaui ::std::vector< OTableWindowData*> m_vTableData; ::std::vector<OTableFieldDesc*> m_vTableFieldDesc; - ::connectivity::OSQLParser m_aSqlParser; // to parse sql statements + OQueryParseContext* m_pParseContext; + ::connectivity::OSQLParser* m_pSqlParser; // to parse sql statements ::connectivity::OSQLParseTreeIterator* m_pSqlIterator; // to iterate through them ::std::vector<sal_uInt32> m_vColumnWidth; Fraction m_aZoom; @@ -138,7 +142,7 @@ namespace dbaui // need for undo's and redo's SfxUndoManager* getUndoMgr(); - ::connectivity::OSQLParser& getParser() { return m_aSqlParser; } + ::connectivity::OSQLParser* getParser() { return m_pSqlParser; } ::connectivity::OSQLParseTreeIterator& getParseIterator() { return *m_pSqlIterator; } sal_uInt32 getColWidth(sal_uInt16 _nPos) const { |