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
aa463487
Kaydet (Commit)
aa463487
authored
Mar 25, 2013
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove C2U in chart2
Change-Id: Id7ebf66319f0891d276a3da95a95658aed59cbc7
üst
deae3771
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
10 deletions
+8
-10
macros.hxx
chart2/source/inc/macros.hxx
+0
-2
ChartModel_Persistence.cxx
chart2/source/model/main/ChartModel_Persistence.cxx
+1
-1
ChartTypeManager.cxx
chart2/source/model/template/ChartTypeManager.cxx
+1
-1
DataInterpreter.cxx
chart2/source/model/template/DataInterpreter.cxx
+6
-5
InternalData.cxx
chart2/source/tools/InternalData.cxx
+0
-1
No files found.
chart2/source/inc/macros.hxx
Dosyayı görüntüle @
aa463487
...
@@ -36,8 +36,6 @@
...
@@ -36,8 +36,6 @@
#define ASSERT_EXCEPTION(ex) (void)(ex)
#define ASSERT_EXCEPTION(ex) (void)(ex)
#endif
#endif
#define U2C(ouString) (OUStringToOString(ouString,RTL_TEXTENCODING_ASCII_US).getStr())
// CHART_MACROS_HXX
// CHART_MACROS_HXX
#endif
#endif
...
...
chart2/source/model/main/ChartModel_Persistence.cxx
Dosyayı görüntüle @
aa463487
...
@@ -173,7 +173,7 @@ Reference< document::XFilter > ChartModel::impl_createFilter(
...
@@ -173,7 +173,7 @@ Reference< document::XFilter > ChartModel::impl_createFilter(
xFilter
.
set
(
xFilter
.
set
(
m_xContext
->
getServiceManager
()
->
createInstanceWithContext
(
m_xContext
->
getServiceManager
()
->
createInstanceWithContext
(
aFilterServiceName
,
m_xContext
),
uno
::
UNO_QUERY_THROW
);
aFilterServiceName
,
m_xContext
),
uno
::
UNO_QUERY_THROW
);
OSL_TRACE
(
"Filter found for service %s"
,
U2C
(
aFilterServiceName
)
);
SAL_WARN
(
"chart2"
,
"Filter found for service "
<<
aFilterServiceName
);
}
}
}
}
}
}
...
...
chart2/source/model/template/ChartTypeManager.cxx
Dosyayı görüntüle @
aa463487
...
@@ -257,7 +257,7 @@ uno::Reference< uno::XInterface > SAL_CALL ChartTypeManager::createInstance(
...
@@ -257,7 +257,7 @@ uno::Reference< uno::XInterface > SAL_CALL ChartTypeManager::createInstance(
// createInstance is called with an unknown service-name, this
// createInstance is called with an unknown service-name, this
// function will just return an empty XInterface.
// function will just return an empty XInterface.
ASSERT_EXCEPTION
(
ex
);
ASSERT_EXCEPTION
(
ex
);
OSL_TRACE
(
"Couldn't instantiate service
\"
%s
\"
"
,
U2C
(
aServiceSpecifier
)
);
SAL_WARN
(
"chart2"
,
"Couldn't instantiate service: "
<<
aServiceSpecifier
);
xResult
.
set
(
0
);
xResult
.
set
(
0
);
}
}
}
}
...
...
chart2/source/model/template/DataInterpreter.cxx
Dosyayı görüntüle @
aa463487
...
@@ -410,7 +410,7 @@ void lcl_ShowDataSource( const Reference< data::XDataSource > & xSource )
...
@@ -410,7 +410,7 @@ void lcl_ShowDataSource( const Reference< data::XDataSource > & xSource )
if
(
!
xSource
.
is
())
if
(
!
xSource
.
is
())
return
;
return
;
OSL_TRACE
(
"DataSource in DataInterpreter:"
);
SAL_INFO
(
"chart2"
,
"DataSource in DataInterpreter:"
);
Sequence
<
Reference
<
data
::
XLabeledDataSequence
>
>
aSequences
(
xSource
->
getDataSequences
());
Sequence
<
Reference
<
data
::
XLabeledDataSequence
>
>
aSequences
(
xSource
->
getDataSequences
());
Reference
<
beans
::
XPropertySet
>
xProp
;
Reference
<
beans
::
XPropertySet
>
xProp
;
OUString
aId
;
OUString
aId
;
...
@@ -426,11 +426,11 @@ void lcl_ShowDataSource( const Reference< data::XDataSource > & xSource )
...
@@ -426,11 +426,11 @@ void lcl_ShowDataSource( const Reference< data::XDataSource > & xSource )
if
(
xProp
.
is
()
&&
if
(
xProp
.
is
()
&&
(
xProp
->
getPropertyValue
(
"Role"
)
>>=
aId
))
(
xProp
->
getPropertyValue
(
"Role"
)
>>=
aId
))
{
{
OSL_TRACE
(
" <data sequence %d> Role: %s, Source: %s"
,
k
,
U2C
(
aId
),
U2C
(
aSourceRepr
)
);
SAL_INFO
(
"chart2"
,
" <data sequence "
<<
k
<<
"> Role: "
<<
aId
<<
", Source: "
<<
aSourceRepr
);
}
}
else
else
{
{
OSL_TRACE
(
" <data sequence %d> unknown Role, Source: %s"
,
k
,
U2C
(
aSourceRepr
)
);
SAL_INFO
(
"chart2"
,
" <data sequence "
<<
k
<<
"> unknown Role, Source: "
<<
aSourceRepr
);
}
}
aSourceRepr
=
"<none>"
;
aSourceRepr
=
"<none>"
;
...
@@ -440,11 +440,12 @@ void lcl_ShowDataSource( const Reference< data::XDataSource > & xSource )
...
@@ -440,11 +440,12 @@ void lcl_ShowDataSource( const Reference< data::XDataSource > & xSource )
if
(
xProp
.
is
()
&&
if
(
xProp
.
is
()
&&
(
xProp
->
getPropertyValue
(
"Role"
)
>>=
aId
))
(
xProp
->
getPropertyValue
(
"Role"
)
>>=
aId
))
{
{
OSL_TRACE
(
" <data sequence label %d> Role: %s, Source: %s"
,
k
,
U2C
(
aId
),
U2C
(
aSourceRepr
));
SAL_INFO
(
"chart2"
,
" <data sequence label "
<<
k
<<
"> Role: "
<<
aId
<<
", Source: "
<<
aSourceRepr
);
}
}
else
else
{
{
OSL_TRACE
(
" <data sequence label %d> unknown Role, Source: %s"
,
k
,
U2C
(
aSourceRepr
)
);
SAL_INFO
(
"chart2"
,
" <data sequence label "
<<
k
<<
"> unknown Role, Source: "
<<
aSourceRepr
);
}
}
}
}
}
}
...
...
chart2/source/tools/InternalData.cxx
Dosyayı görüntüle @
aa463487
...
@@ -21,7 +21,6 @@
...
@@ -21,7 +21,6 @@
#include "InternalData.hxx"
#include "InternalData.hxx"
#include "ResId.hxx"
#include "ResId.hxx"
#include "Strings.hrc"
#include "Strings.hrc"
#include "macros.hxx"
#include <rtl/math.hxx>
#include <rtl/math.hxx>
#include <algorithm>
#include <algorithm>
...
...
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