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
6a5a7fee
Kaydet (Commit)
6a5a7fee
authored
Kas 11, 2009
tarafından
Ocke Janssen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#i105086# fix for clob and blob
üst
48eb2030
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
55 deletions
+56
-55
FormComponent.cxx
forms/source/component/FormComponent.cxx
+2
-2
ImageControl.cxx
forms/source/component/ImageControl.cxx
+1
-0
FormComponent.hxx
forms/source/inc/FormComponent.hxx
+53
-53
No files found.
forms/source/component/FormComponent.cxx
Dosyayı görüntüle @
6a5a7fee
...
@@ -2217,7 +2217,7 @@ sal_Bool OBoundControlModel::approveDbColumnType(sal_Int32 _nColumnType)
...
@@ -2217,7 +2217,7 @@ sal_Bool OBoundControlModel::approveDbColumnType(sal_Int32 _nColumnType)
||
(
_nColumnType
==
DataType
::
LONGVARBINARY
)
||
(
_nColumnType
==
DataType
::
OTHER
)
||
(
_nColumnType
==
DataType
::
LONGVARBINARY
)
||
(
_nColumnType
==
DataType
::
OTHER
)
||
(
_nColumnType
==
DataType
::
OBJECT
)
||
(
_nColumnType
==
DataType
::
DISTINCT
)
||
(
_nColumnType
==
DataType
::
OBJECT
)
||
(
_nColumnType
==
DataType
::
DISTINCT
)
||
(
_nColumnType
==
DataType
::
STRUCT
)
||
(
_nColumnType
==
DataType
::
ARRAY
)
||
(
_nColumnType
==
DataType
::
STRUCT
)
||
(
_nColumnType
==
DataType
::
ARRAY
)
||
(
_nColumnType
==
DataType
::
BLOB
)
||
(
_nColumnType
==
DataType
::
CLOB
)
||
(
_nColumnType
==
DataType
::
BLOB
)
/*|| (_nColumnType == DataType::CLOB)*/
||
(
_nColumnType
==
DataType
::
REF
)
||
(
_nColumnType
==
DataType
::
SQLNULL
))
||
(
_nColumnType
==
DataType
::
REF
)
||
(
_nColumnType
==
DataType
::
SQLNULL
))
return
sal_False
;
return
sal_False
;
...
@@ -2553,7 +2553,7 @@ void OBoundControlModel::reset() throw (RuntimeException)
...
@@ -2553,7 +2553,7 @@ void OBoundControlModel::reset() throw (RuntimeException)
||
(
nFieldType
==
DataType
::
LONGVARBINARY
)
||
(
nFieldType
==
DataType
::
LONGVARBINARY
)
||
(
nFieldType
==
DataType
::
OBJECT
)
||
(
nFieldType
==
DataType
::
OBJECT
)
||
(
nFieldType
==
DataType
::
BLOB
)
||
(
nFieldType
==
DataType
::
BLOB
)
||
(
nFieldType
==
DataType
::
CLOB
)
/*|| ( nFieldType == DataType::CLOB )*/
)
)
m_xColumn
->
getBinaryStream
();
m_xColumn
->
getBinaryStream
();
else
else
...
...
forms/source/component/ImageControl.cxx
Dosyayı görüntüle @
6a5a7fee
...
@@ -115,6 +115,7 @@ namespace
...
@@ -115,6 +115,7 @@ namespace
||
(
_nFieldType
==
DataType
::
OBJECT
)
||
(
_nFieldType
==
DataType
::
OBJECT
)
||
(
_nFieldType
==
DataType
::
BLOB
)
||
(
_nFieldType
==
DataType
::
BLOB
)
||
(
_nFieldType
==
DataType
::
LONGVARCHAR
)
||
(
_nFieldType
==
DataType
::
LONGVARCHAR
)
||
(
_nFieldType
==
DataType
::
CLOB
)
)
)
return
ImageStoreBinary
;
return
ImageStoreBinary
;
...
...
forms/source/inc/FormComponent.hxx
Dosyayı görüntüle @
6a5a7fee
...
@@ -31,61 +31,61 @@
...
@@ -31,61 +31,61 @@
#ifndef _FORMS_FORMCOMPONENT_HXX_
#ifndef _FORMS_FORMCOMPONENT_HXX_
#define _FORMS_FORMCOMPONENT_HXX_
#define _FORMS_FORMCOMPONENT_HXX_
#include "cloneable.hxx"
#include "cloneable.hxx"
#include "ids.hxx"
#include "ids.hxx"
#include "property.hrc"
#include "property.hrc"
#include "property.hxx"
#include "property.hxx"
#include "propertybaghelper.hxx"
#include "propertybaghelper.hxx"
#include "resettable.hxx"
#include "resettable.hxx"
#include "services.hxx"
#include "services.hxx"
#include "windowstateguard.hxx"
#include "windowstateguard.hxx"
/** === begin UNO includes === **/
/** === begin UNO includes === **/
#include <com/sun/star/awt/XControl.hpp>
#include <com/sun/star/awt/XControl.hpp>
#include <com/sun/star/beans/XPropertyAccess.hpp>
#include <com/sun/star/beans/XPropertyAccess.hpp>
#include <com/sun/star/beans/XPropertyContainer.hpp>
#include <com/sun/star/beans/XPropertyContainer.hpp>
#include <com/sun/star/container/XChild.hpp>
#include <com/sun/star/container/XChild.hpp>
#include <com/sun/star/container/XNamed.hpp>
#include <com/sun/star/container/XNamed.hpp>
#include <com/sun/star/form/binding/XBindableValue.hpp>
#include <com/sun/star/form/binding/XBindableValue.hpp>
#include <com/sun/star/form/FormComponentType.hpp>
#include <com/sun/star/form/FormComponentType.hpp>
#include <com/sun/star/form/validation/XValidatableFormComponent.hpp>
#include <com/sun/star/form/validation/XValidatableFormComponent.hpp>
#include <com/sun/star/form/validation/XValidityConstraintListener.hpp>
#include <com/sun/star/form/validation/XValidityConstraintListener.hpp>
#include <com/sun/star/form/XBoundComponent.hpp>
#include <com/sun/star/form/XBoundComponent.hpp>
#include <com/sun/star/form/XBoundControl.hpp>
#include <com/sun/star/form/XBoundControl.hpp>
#include <com/sun/star/form/XFormComponent.hpp>
#include <com/sun/star/form/XFormComponent.hpp>
#include <com/sun/star/form/XLoadListener.hpp>
#include <com/sun/star/form/XLoadListener.hpp>
#include <com/sun/star/form/XReset.hpp>
#include <com/sun/star/form/XReset.hpp>
#include <com/sun/star/io/XMarkableStream.hpp>
#include <com/sun/star/io/XMarkableStream.hpp>
#include <com/sun/star/io/XPersistObject.hpp>
#include <com/sun/star/io/XPersistObject.hpp>
#include <com/sun/star/lang/DisposedException.hpp>
#include <com/sun/star/lang/DisposedException.hpp>
#include <com/sun/star/lang/XEventListener.hpp>
#include <com/sun/star/lang/XEventListener.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/sdb/XColumn.hpp>
#include <com/sun/star/sdb/XColumn.hpp>
#include <com/sun/star/sdb/XColumnUpdate.hpp>
#include <com/sun/star/sdb/XColumnUpdate.hpp>
#include <com/sun/star/sdb/XRowSetChangeListener.hpp>
#include <com/sun/star/sdb/XRowSetChangeListener.hpp>
#include <com/sun/star/sdbc/XRowSet.hpp>
#include <com/sun/star/sdbc/XRowSet.hpp>
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
#include <com/sun/star/uno/XAggregation.hpp>
#include <com/sun/star/uno/XAggregation.hpp>
#include <com/sun/star/util/XCloneable.hpp>
#include <com/sun/star/util/XCloneable.hpp>
#include <com/sun/star/util/XModifyListener.hpp>
#include <com/sun/star/util/XModifyListener.hpp>
#include <com/sun/star/form/XLoadable.hpp>
#include <com/sun/star/form/XLoadable.hpp>
/** === end UNO includes === **/
/** === end UNO includes === **/
#include <comphelper/componentcontext.hxx>
#include <comphelper/componentcontext.hxx>
#include <comphelper/propagg.hxx>
#include <comphelper/propagg.hxx>
#include <comphelper/propertybag.hxx>
#include <comphelper/propertybag.hxx>
#include <comphelper/propmultiplex.hxx>
#include <comphelper/propmultiplex.hxx>
#include <comphelper/sequence.hxx>
#include <comphelper/sequence.hxx>
#include <comphelper/uno3.hxx>
#include <comphelper/uno3.hxx>
#include <cppuhelper/component.hxx>
#include <cppuhelper/component.hxx>
#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implbase2.hxx>
#include <cppuhelper/implbase3.hxx>
#include <cppuhelper/implbase3.hxx>
#include <cppuhelper/implbase4.hxx>
#include <cppuhelper/implbase4.hxx>
#include <cppuhelper/implbase7.hxx>
#include <cppuhelper/implbase7.hxx>
#include <osl/mutex.hxx>
#include <osl/mutex.hxx>
#include <rtl/ustring.hxx>
#include <rtl/ustring.hxx>
#include <memory>
#include <memory>
...
...
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