Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
da0a5f99
Kaydet (Commit)
da0a5f99
authored
Tem 05, 2002
tarafından
Ocke Janssen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#96479# add table to filter
üst
31afb30a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
15 deletions
+23
-15
WCPage.hxx
dbaccess/source/ui/inc/WCPage.hxx
+7
-7
HtmlReader.cxx
dbaccess/source/ui/misc/HtmlReader.cxx
+11
-3
WCPage.cxx
dbaccess/source/ui/misc/WCPage.cxx
+5
-5
No files found.
dbaccess/source/ui/inc/WCPage.hxx
Dosyayı görüntüle @
da0a5f99
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: WCPage.hxx,v $
* $RCSfile: WCPage.hxx,v $
*
*
* $Revision: 1.
3
$
* $Revision: 1.
4
$
*
*
* last change: $Author: oj $ $Date: 200
1-12-07 13:12:29
$
* last change: $Author: oj $ $Date: 200
2-07-05 13:55:05
$
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -125,13 +125,13 @@ namespace dbaui
...
@@ -125,13 +125,13 @@ namespace dbaui
virtual
BOOL
LeavePage
();
virtual
BOOL
LeavePage
();
virtual
String
GetTitle
()
const
;
virtual
String
GetTitle
()
const
;
OCopyTable
(
Window
*
pParent
,
EImportMode
atWhat
,
BOOL
bIs
Query
,
OCopyTableWizard
::
Wizard_Create_Style
nLastAction
);
OCopyTable
(
Window
*
pParent
,
EImportMode
atWhat
,
BOOL
bIs
View
,
OCopyTableWizard
::
Wizard_Create_Style
nLastAction
);
virtual
~
OCopyTable
();
virtual
~
OCopyTable
();
BOOL
IsOptionDefData
()
const
{
return
m_aRB_DefData
.
IsChecked
();
}
inline
BOOL
IsOptionDefData
()
const
{
return
m_aRB_DefData
.
IsChecked
();
}
BOOL
IsOptionDef
()
const
{
return
m_aRB_Def
.
IsChecked
();
}
inline
BOOL
IsOptionDef
()
const
{
return
m_aRB_Def
.
IsChecked
();
}
BOOL
IsOptionAppendData
()
const
{
return
m_aRB_AppendData
.
IsChecked
();
}
inline
BOOL
IsOptionAppendData
()
const
{
return
m_aRB_AppendData
.
IsChecked
();
}
BOOL
IsOptionView
()
const
{
return
m_aRB_View
.
IsChecked
();
}
inline
BOOL
IsOptionView
()
const
{
return
m_aRB_View
.
IsChecked
();
}
};
};
}
}
...
...
dbaccess/source/ui/misc/HtmlReader.cxx
Dosyayı görüntüle @
da0a5f99
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: HtmlReader.cxx,v $
* $RCSfile: HtmlReader.cxx,v $
*
*
* $Revision: 1.1
3
$
* $Revision: 1.1
4
$
*
*
* last change: $Author: oj $ $Date: 2002-0
5-28 08:39:10
$
* last change: $Author: oj $ $Date: 2002-0
7-05 13:52:52
$
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -334,7 +334,10 @@ void OHTMLReader::NextToken( int nToken )
...
@@ -334,7 +334,10 @@ void OHTMLReader::NextToken( int nToken )
}
}
break
;
break
;
case
HTML_TABLEROW_ON
:
case
HTML_TABLEROW_ON
:
m_xResultSetUpdate
->
moveToInsertRow
();
// sonst neue Zeile anh"angen
if
(
m_xResultSetUpdate
.
is
()
)
m_xResultSetUpdate
->
moveToInsertRow
();
// sonst neue Zeile anh"angen
else
m_bError
=
sal_True
;
break
;
break
;
case
HTML_TEXTTOKEN
:
case
HTML_TEXTTOKEN
:
case
HTML_SINGLECHAR
:
case
HTML_SINGLECHAR
:
...
@@ -353,6 +356,11 @@ void OHTMLReader::NextToken( int nToken )
...
@@ -353,6 +356,11 @@ void OHTMLReader::NextToken( int nToken )
}
}
break
;
break
;
case
HTML_TABLEROW_OFF
:
case
HTML_TABLEROW_OFF
:
if
(
!
m_xResultSetUpdate
.
is
()
)
{
m_bError
=
sal_True
;
break
;
}
try
try
{
{
m_nRowCount
++
;
m_nRowCount
++
;
...
...
dbaccess/source/ui/misc/WCPage.cxx
Dosyayı görüntüle @
da0a5f99
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: WCPage.cxx,v $
* $RCSfile: WCPage.cxx,v $
*
*
* $Revision: 1.1
3
$
* $Revision: 1.1
4
$
*
*
* last change: $Author: oj $ $Date: 2002-0
5-23 12:03:56
$
* last change: $Author: oj $ $Date: 2002-0
7-05 13:52:33
$
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -115,7 +115,7 @@ using namespace ::com::sun::star::sdbcx;
...
@@ -115,7 +115,7 @@ using namespace ::com::sun::star::sdbcx;
//========================================================================
//========================================================================
DBG_NAME
(
OCopyTable
);
DBG_NAME
(
OCopyTable
);
//------------------------------------------------------------------------
//------------------------------------------------------------------------
OCopyTable
::
OCopyTable
(
Window
*
pParent
,
EImportMode
atWhat
,
sal_Bool
bIs
Query
,
OCopyTableWizard
::
Wizard_Create_Style
nLastAction
)
OCopyTable
::
OCopyTable
(
Window
*
pParent
,
EImportMode
atWhat
,
sal_Bool
bIs
View
,
OCopyTableWizard
::
Wizard_Create_Style
nLastAction
)
:
OWizardPage
(
pParent
,
ModuleRes
(
TAB_WIZ_COPYTABLE
)
),
:
OWizardPage
(
pParent
,
ModuleRes
(
TAB_WIZ_COPYTABLE
)
),
m_ftTableName
(
this
,
ResId
(
FT_TABLENAME
)
),
m_ftTableName
(
this
,
ResId
(
FT_TABLENAME
)
),
m_edTableName
(
this
,
ResId
(
ET_TABLENAME
)
),
m_edTableName
(
this
,
ResId
(
ET_TABLENAME
)
),
...
@@ -129,7 +129,7 @@ OCopyTable::OCopyTable( Window * pParent, EImportMode atWhat, sal_Bool bIsQuery,
...
@@ -129,7 +129,7 @@ OCopyTable::OCopyTable( Window * pParent, EImportMode atWhat, sal_Bool bIsQuery,
m_edKeyName
(
this
,
ResId
(
ET_KEYNAME
)
),
m_edKeyName
(
this
,
ResId
(
ET_KEYNAME
)
),
m_pPage2
(
NULL
),
m_pPage2
(
NULL
),
m_pPage3
(
NULL
),
m_pPage3
(
NULL
),
m_bIsViewAllowed
(
bIs
Query
)
m_bIsViewAllowed
(
bIs
View
)
{
{
DBG_CTOR
(
OCopyTable
,
NULL
);
DBG_CTOR
(
OCopyTable
,
NULL
);
...
@@ -166,7 +166,7 @@ OCopyTable::OCopyTable( Window * pParent, EImportMode atWhat, sal_Bool bIsQuery,
...
@@ -166,7 +166,7 @@ OCopyTable::OCopyTable( Window * pParent, EImportMode atWhat, sal_Bool bIsQuery,
}
}
}
}
if
(
!
m_bIsViewAllowed
)
if
(
!
m_bIsViewAllowed
||
bIsView
)
// if it is a view disable the view checkbox #100644# OJ
m_aRB_View
.
Disable
();
m_aRB_View
.
Disable
();
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment