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
b53ff286
Kaydet (Commit)
b53ff286
authored
Mar 31, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix various warnings
Change-Id: I78aa55539c2a3e522736bb178ba7d445300bf1f0
üst
e211e4ed
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
24 deletions
+7
-24
PivotLayoutDialog.cxx
sc/source/ui/dbgui/PivotLayoutDialog.cxx
+2
-17
PivotLayoutTreeList.cxx
sc/source/ui/dbgui/PivotLayoutTreeList.cxx
+2
-2
PivotLayoutTreeListData.cxx
sc/source/ui/dbgui/PivotLayoutTreeListData.cxx
+2
-2
PivotLayoutDialog.hxx
sc/source/ui/inc/PivotLayoutDialog.hxx
+1
-1
PivotLayoutTreeListBase.hxx
sc/source/ui/inc/PivotLayoutTreeListBase.hxx
+0
-2
No files found.
sc/source/ui/dbgui/PivotLayoutDialog.cxx
Dosyayı görüntüle @
b53ff286
...
...
@@ -22,7 +22,7 @@
using
namespace
css
::
uno
;
using
namespace
css
::
sheet
;
ScItemValue
::
ScItemValue
(
OUString
aName
,
SCCOL
nColumn
,
sal_uInt16
nFunctionMask
)
:
ScItemValue
::
ScItemValue
(
OUString
const
&
aName
,
SCCOL
nColumn
,
sal_uInt16
nFunctionMask
)
:
maName
(
aName
),
maFunctionData
(
nColumn
,
nFunctionMask
),
mpOriginalItemValue
(
this
)
...
...
@@ -40,22 +40,7 @@ ScItemValue::~ScItemValue()
namespace
{
OUString
lclGetNameForNamedRange
(
ScRange
aRange
,
ScDocument
*
pDocument
)
{
OUString
aName
;
ScRangeName
*
pRangeName
=
pDocument
->
GetRangeName
();
if
(
pRangeName
==
NULL
)
return
aName
;
const
ScRangeData
*
pData
=
pRangeName
->
findByRange
(
aRange
);
if
(
pData
==
NULL
)
return
aName
;
return
pData
->
GetName
();
}
ScRange
lclGetRangeForNamedRange
(
OUString
aName
,
ScDocument
*
pDocument
)
ScRange
lclGetRangeForNamedRange
(
OUString
const
&
aName
,
ScDocument
*
pDocument
)
{
ScRange
aInvalidRange
(
ScAddress
::
INITIALIZE_INVALID
);
ScRangeName
*
pRangeName
=
pDocument
->
GetRangeName
();
...
...
sc/source/ui/dbgui/PivotLayoutTreeList.cxx
Dosyayı görüntüle @
b53ff286
...
...
@@ -83,7 +83,7 @@ void ScPivotLayoutTreeList::FillFields(ScPivotFieldVector& rFieldVector)
{
ScPivotField
&
rField
=
*
it
;
ScItemValue
*
pItemValue
=
mpParent
->
GetItem
(
rField
.
nCol
);
InsertEntry
(
pItemValue
->
maName
,
NULL
,
sal_F
alse
,
TREELIST_APPEND
,
pItemValue
);
InsertEntry
(
pItemValue
->
maName
,
NULL
,
f
alse
,
TREELIST_APPEND
,
pItemValue
);
}
}
...
...
@@ -105,7 +105,7 @@ void ScPivotLayoutTreeList::InsertEntryForSourceTarget(SvTreeListEntry* pSource,
void
ScPivotLayoutTreeList
::
InsertEntryForItem
(
ScItemValue
*
pItemValue
,
sal_uLong
nPosition
)
{
OUString
rName
=
pItemValue
->
maName
;
InsertEntry
(
rName
,
NULL
,
sal_F
alse
,
nPosition
,
pItemValue
);
InsertEntry
(
rName
,
NULL
,
f
alse
,
nPosition
,
pItemValue
);
}
void
ScPivotLayoutTreeList
::
KeyInput
(
const
KeyEvent
&
rKeyEvent
)
...
...
sc/source/ui/dbgui/PivotLayoutTreeListData.cxx
Dosyayı görüntüle @
b53ff286
...
...
@@ -156,7 +156,7 @@ void ScPivotLayoutTreeListData::InsertEntryForSourceTarget(SvTreeListEntry* pSou
OUString
rText
=
GetEntryText
(
pSource
);
GetModel
()
->
Remove
(
pSource
);
sal_uLong
nPosition
=
(
pTarget
==
NULL
)
?
TREELIST_APPEND
:
GetModel
()
->
GetAbsPos
(
pTarget
)
+
1
;
InsertEntry
(
rText
,
NULL
,
sal_F
alse
,
nPosition
,
pItemValue
);
InsertEntry
(
rText
,
NULL
,
f
alse
,
nPosition
,
pItemValue
);
}
else
{
...
...
@@ -184,7 +184,7 @@ void ScPivotLayoutTreeListData::InsertEntryForItem(ScItemValue* pItemValue, sal_
pDataItemValue
->
maName
,
rFunctionData
.
mnDupCount
);
InsertEntry
(
sDataName
,
NULL
,
sal_F
alse
,
nPosition
,
pDataItemValue
);
InsertEntry
(
sDataName
,
NULL
,
f
alse
,
nPosition
,
pDataItemValue
);
}
void
ScPivotLayoutTreeListData
::
KeyInput
(
const
KeyEvent
&
rKeyEvent
)
...
...
sc/source/ui/inc/PivotLayoutDialog.hxx
Dosyayı görüntüle @
b53ff286
...
...
@@ -33,7 +33,7 @@ public:
ScPivotFuncData
maFunctionData
;
ScItemValue
*
mpOriginalItemValue
;
ScItemValue
(
OUString
aName
,
SCCOL
nColumn
,
sal_uInt16
nFunctionMask
);
ScItemValue
(
OUString
const
&
aName
,
SCCOL
nColumn
,
sal_uInt16
nFunctionMask
);
ScItemValue
(
ScItemValue
*
pInputItemValue
);
virtual
~
ScItemValue
();
...
...
sc/source/ui/inc/PivotLayoutTreeListBase.hxx
Dosyayı görüntüle @
b53ff286
...
...
@@ -33,8 +33,6 @@ public:
COLUMN_LIST
,
DATA_LIST
};
private
:
bool
mbIsInternalDrag
;
protected
:
SvPivotTreeListType
meType
;
...
...
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