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
8090cba7
Kaydet (Commit)
8090cba7
authored
Mar 26, 2012
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
implement XDumper in ChartModel
üst
9cab649c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
ChartModel.cxx
chart2/source/model/main/ChartModel.cxx
+7
-0
ChartModel.hxx
chart2/source/model/main/ChartModel.hxx
+9
-4
No files found.
chart2/source/model/main/ChartModel.cxx
Dosyayı görüntüle @
8090cba7
...
@@ -1353,6 +1353,13 @@ uno::Sequence< Reference< chart2::data::XLabeledDataSequence > > SAL_CALL ChartM
...
@@ -1353,6 +1353,13 @@ uno::Sequence< Reference< chart2::data::XLabeledDataSequence > > SAL_CALL ChartM
return
uno
::
Sequence
<
Reference
<
chart2
::
data
::
XLabeledDataSequence
>
>
();
return
uno
::
Sequence
<
Reference
<
chart2
::
data
::
XLabeledDataSequence
>
>
();
}
}
//XDumper
rtl
::
OUString
SAL_CALL
ChartModel
::
dump
()
throw
(
uno
::
RuntimeException
)
{
return
rtl
::
OUString
();
}
}
// namespace chart
}
// namespace chart
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
chart2/source/model/main/ChartModel.hxx
Dosyayı görüntüle @
8090cba7
...
@@ -64,9 +64,9 @@
...
@@ -64,9 +64,9 @@
#include <com/sun/star/embed/XStorage.hpp>
#include <com/sun/star/embed/XStorage.hpp>
#include <com/sun/star/datatransfer/XTransferable.hpp>
#include <com/sun/star/datatransfer/XTransferable.hpp>
#if ! defined(INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_2
1
)
#if ! defined(INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_2
2
)
#define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_2
1
#define INCLUDED_COMPHELPER_IMPLBASE_VAR_HXX_2
2
#define COMPHELPER_IMPLBASE_INTERFACE_NUMBER 2
1
#define COMPHELPER_IMPLBASE_INTERFACE_NUMBER 2
2
#include "comphelper/implbase_var.hxx"
#include "comphelper/implbase_var.hxx"
#endif
#endif
#include <osl/mutex.hxx>
#include <osl/mutex.hxx>
...
@@ -88,7 +88,7 @@ namespace impl
...
@@ -88,7 +88,7 @@ namespace impl
{
{
// Note: needed for queryInterface (if it calls the base-class implementation)
// Note: needed for queryInterface (if it calls the base-class implementation)
typedef
::
comphelper
::
WeakImplHelper2
1
<
typedef
::
comphelper
::
WeakImplHelper2
2
<
// ::com::sun::star::frame::XModel //comprehends XComponent (required interface), base of XChartDocument
// ::com::sun::star::frame::XModel //comprehends XComponent (required interface), base of XChartDocument
::
com
::
sun
::
star
::
util
::
XCloseable
//comprehends XCloseBroadcaster
::
com
::
sun
::
star
::
util
::
XCloseable
//comprehends XCloseBroadcaster
,
::
com
::
sun
::
star
::
frame
::
XStorable2
//(extension of XStorable)
,
::
com
::
sun
::
star
::
frame
::
XStorable2
//(extension of XStorable)
...
@@ -111,6 +111,7 @@ typedef ::comphelper::WeakImplHelper21<
...
@@ -111,6 +111,7 @@ typedef ::comphelper::WeakImplHelper21<
,
::
com
::
sun
::
star
::
document
::
XDocumentPropertiesSupplier
,
::
com
::
sun
::
star
::
document
::
XDocumentPropertiesSupplier
,
::
com
::
sun
::
star
::
chart2
::
data
::
XDataSource
,
::
com
::
sun
::
star
::
chart2
::
data
::
XDataSource
,
::
com
::
sun
::
star
::
document
::
XUndoManagerSupplier
,
::
com
::
sun
::
star
::
document
::
XUndoManagerSupplier
,
::
com
::
sun
::
star
::
qa
::
XDumper
>
>
ChartModel_Base
;
ChartModel_Base
;
}
}
...
@@ -607,6 +608,10 @@ public:
...
@@ -607,6 +608,10 @@ public:
// ____ XDataSource ____ allows access to the curently used data and data ranges
// ____ XDataSource ____ allows access to the curently used data and data ranges
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
chart2
::
data
::
XLabeledDataSequence
>
>
SAL_CALL
getDataSequences
()
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
chart2
::
data
::
XLabeledDataSequence
>
>
SAL_CALL
getDataSequences
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
// XDumper
virtual
rtl
::
OUString
dump
()
throw
(
com
::
sun
::
star
::
uno
::
RuntimeException
);
};
};
}
// namespace chart
}
// namespace chart
...
...
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