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
edc484d9
Kaydet (Commit)
edc484d9
authored
Kas 28, 2013
tarafından
Matúš Kukan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
make data streams an experimental feature
Change-Id: I674b86a6e1c1c0b162c159747b6900ce438ab095
üst
39bc5e11
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
5 deletions
+16
-5
cellsh.sdi
sc/sdi/cellsh.sdi
+3
-3
xmlcelli.cxx
sc/source/filter/xml/xmlcelli.cxx
+3
-1
cellsh2.cxx
sc/source/ui/view/cellsh2.cxx
+10
-1
No files found.
sc/sdi/cellsh.sdi
Dosyayı görüntüle @
edc484d9
...
...
@@ -51,9 +51,9 @@ interface CellSelection
SID_REFRESH_DBAREA [ ExecMethod = ExecuteDB; StateMethod = GetDBState; ]
SID_SBA_BRW_INSERT [ ExecMethod = ExecuteDB; StateMethod = GetDBState; ]
SID_SELECT_DB [ ExecMethod = ExecuteDB; StateMethod = GetDBState; ]
SID_DATA_STREAMS [ ExecMethod = ExecuteDB; ]
SID_DATA_STREAMS_PLAY [ ExecMethod = ExecuteDB; ]
SID_DATA_STREAMS_STOP [ ExecMethod = ExecuteDB; ]
SID_DATA_STREAMS [ ExecMethod = ExecuteDB;
StateMethod = GetDBState;
]
SID_DATA_STREAMS_PLAY [ ExecMethod = ExecuteDB;
StateMethod = GetDBState;
]
SID_DATA_STREAMS_STOP [ ExecMethod = ExecuteDB;
StateMethod = GetDBState;
]
SID_MANAGE_XML_SOURCE [ ExecMethod = ExecuteDB; StateMethod = GetDBState; ]
SID_SORT [ ExecMethod = ExecuteDB; StateMethod = GetDBState; ]
SID_DATA_FORM [ ExecMethod = ExecuteDB; StateMethod = GetDBState; ]
...
...
sc/source/filter/xml/xmlcelli.cxx
Dosyayı görüntüle @
edc484d9
...
...
@@ -86,6 +86,7 @@
#include "editeng/langitem.hxx"
#include <svx/unoapi.hxx>
#include <svl/languageoptions.hxx>
#include <svtools/miscopt.hxx>
#include <sax/tools/converter.hxx>
#include <com/sun/star/frame/XModel.hpp>
...
...
@@ -1001,7 +1002,8 @@ void ScXMLTableRowCellContext::SetCellRangeSource( const ScAddress& rPosition )
OUString
sSourceStr
(
pCellRangeSource
->
sSourceStr
);
OUString
sRangeStr
;
ScRangeStringConverter
::
GetStringFromRange
(
sRangeStr
,
aDestRange
,
pDoc
,
formula
::
FormulaGrammar
::
CONV_OOO
);
if
(
pCellRangeSource
->
sFilterOptions
==
"DataStream"
)
SvtMiscOptions
aMiscOptions
;
if
(
aMiscOptions
.
IsExperimentalMode
()
&&
pCellRangeSource
->
sFilterOptions
==
"DataStream"
)
{
DataStream
::
Set
(
dynamic_cast
<
ScDocShell
*>
(
pDoc
->
GetDocumentShell
())
,
pCellRangeSource
->
sURL
// rURL
...
...
sc/source/ui/view/cellsh2.cxx
Dosyayı görüntüle @
edc484d9
...
...
@@ -29,6 +29,7 @@
#include <vcl/msgbox.hxx>
#include <svl/stritem.hxx>
#include <svl/visitem.hxx>
#include <svtools/miscopt.hxx>
#include <unotools/moduleoptions.hxx>
#include <com/sun/star/frame/FrameSearchFlag.hpp>
...
...
@@ -1167,7 +1168,15 @@ void ScCellShell::GetDBState( SfxItemSet& rSet )
}
}
break
;
case
SID_DATA_STREAMS
:
case
SID_DATA_STREAMS_PLAY
:
case
SID_DATA_STREAMS_STOP
:
{
SvtMiscOptions
aMiscOptions
;
if
(
!
aMiscOptions
.
IsExperimentalMode
()
)
rSet
.
DisableItem
(
nWhich
);
}
break
;
case
SID_TEXT_TO_COLUMNS
:
{
ScRange
aRange
;
...
...
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