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
4ee829af
Kaydet (Commit)
4ee829af
authored
Ara 06, 2012
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
-Werror,-Wunused-private-field
Change-Id: I1866be3b7feb42f0b1a24bf214a1276b76f883b5
üst
1fd91ad2
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
20 deletions
+8
-20
condformatdlg.cxx
sc/source/ui/condformat/condformatdlg.cxx
+1
-3
condformatmgr.cxx
sc/source/ui/condformat/condformatmgr.cxx
+5
-6
sortkeydlg.cxx
sc/source/ui/dbgui/sortkeydlg.cxx
+0
-1
condformatdlg.hxx
sc/source/ui/inc/condformatdlg.hxx
+0
-4
condformatmgr.hxx
sc/source/ui/inc/condformatmgr.hxx
+2
-3
sortkeydlg.hxx
sc/source/ui/inc/sortkeydlg.hxx
+0
-3
No files found.
sc/source/ui/condformat/condformatdlg.cxx
Dosyayı görüntüle @
4ee829af
...
...
@@ -368,9 +368,7 @@ ScCondFormatDlg::ScCondFormatDlg(Window* pParent, ScDocument* pDoc, const ScCond
maCondFormList
(
this
,
ScResId
(
CTRL_LIST
),
pDoc
,
pFormat
,
rRange
,
rPos
,
eType
),
maPos
(
rPos
),
mpDoc
(
pDoc
),
mpFormat
(
pFormat
),
mpLastEdit
(
NULL
),
meType
(
eType
)
mpLastEdit
(
NULL
)
{
rtl
::
OUStringBuffer
aTitle
(
GetText
()
);
aTitle
.
append
(
rtl
::
OUString
(
" "
));
...
...
sc/source/ui/condformat/condformatmgr.cxx
Dosyayı görüntüle @
4ee829af
...
...
@@ -37,12 +37,11 @@
#define ITEMID_CONDITION 2
ScCondFormatManagerWindow
::
ScCondFormatManagerWindow
(
Window
*
pParent
,
ScDocument
*
pDoc
,
ScConditionalFormatList
*
pFormatList
,
const
ScAddress
&
rPos
)
:
ScCondFormatManagerWindow
::
ScCondFormatManagerWindow
(
Window
*
pParent
,
ScDocument
*
pDoc
,
ScConditionalFormatList
*
pFormatList
)
:
SvTabListBox
(
pParent
,
WB_SORT
|
WB_HSCROLL
|
WB_CLIPCHILDREN
|
WB_TABSTOP
),
maHeaderBar
(
pParent
,
WB_BUTTONSTYLE
|
WB_BOTTOMBORDER
),
mpDoc
(
pDoc
),
mpFormatList
(
pFormatList
),
mrPos
(
rPos
)
mpFormatList
(
pFormatList
)
{
Size
aBoxSize
(
pParent
->
GetOutputSizePixel
()
);
...
...
@@ -142,9 +141,9 @@ IMPL_LINK_NOARG(ScCondFormatManagerWindow, HeaderEndDragHdl)
return
0
;
}
ScCondFormatManagerCtrl
::
ScCondFormatManagerCtrl
(
Window
*
pParent
,
ScDocument
*
pDoc
,
ScConditionalFormatList
*
pFormatList
,
const
ScAddress
&
rPos
)
:
ScCondFormatManagerCtrl
::
ScCondFormatManagerCtrl
(
Window
*
pParent
,
ScDocument
*
pDoc
,
ScConditionalFormatList
*
pFormatList
)
:
Control
(
pParent
,
ScResId
(
CTRL_TABLE
)),
maWdManager
(
this
,
pDoc
,
pFormatList
,
rPos
)
maWdManager
(
this
,
pDoc
,
pFormatList
)
{
}
...
...
@@ -172,7 +171,7 @@ ScCondFormatManagerDlg::ScCondFormatManagerDlg(Window* pParent, ScDocument* pDoc
maBtnCancel
(
this
,
ScResId
(
BTN_CANCEL
)),
maFlLine
(
this
,
ScResId
(
FL_LINE
)),
mpFormatList
(
pFormatList
?
new
ScConditionalFormatList
(
*
pFormatList
)
:
NULL
),
maCtrlManager
(
this
,
pDoc
,
mpFormatList
,
rPos
),
maCtrlManager
(
this
,
pDoc
,
mpFormatList
),
mpDoc
(
pDoc
),
maPos
(
rPos
),
mbModified
(
false
)
...
...
sc/source/ui/dbgui/sortkeydlg.cxx
Dosyayı görüntüle @
4ee829af
...
...
@@ -109,7 +109,6 @@ ScSortKeyCtrl::ScSortKeyCtrl(SfxTabPage* pParent, ScSortKeyItems& rItems)
:
m_aSortWin
(
pParent
,
rItems
)
,
m_rScrolledWindow
(
*
pParent
->
get
<
VclScrolledWindow
>
(
"SortCriteriaPage"
))
,
m_rVertScroll
(
m_rScrolledWindow
.
getVertScrollBar
())
,
nThumbPos
(
0
)
{
m_rVertScroll
.
EnableDrag
();
m_rVertScroll
.
Show
();
...
...
sc/source/ui/inc/condformatdlg.hxx
Dosyayı görüntüle @
4ee829af
...
...
@@ -112,12 +112,8 @@ private:
ScAddress
maPos
;
ScDocument
*
mpDoc
;
const
ScConditionalFormat
*
mpFormat
;
formula
::
RefEdit
*
mpLastEdit
;
condformat
::
dialog
::
ScCondFormatDialogType
meType
;
DECL_LINK
(
EdRangeModifyHdl
,
Edit
*
);
protected
:
...
...
sc/source/ui/inc/condformatmgr.hxx
Dosyayı görüntüle @
4ee829af
...
...
@@ -50,13 +50,12 @@ private:
HeaderBar
maHeaderBar
;
ScDocument
*
mpDoc
;
ScConditionalFormatList
*
mpFormatList
;
const
ScAddress
&
mrPos
;
std
::
map
<
SvTreeListEntry
*
,
sal_Int32
>
maMapLBoxEntryToCondIndex
;
DECL_LINK
(
HeaderEndDragHdl
,
void
*
);
public
:
ScCondFormatManagerWindow
(
Window
*
pParent
,
ScDocument
*
pDoc
,
ScConditionalFormatList
*
pFormatList
,
const
ScAddress
&
rPos
);
ScCondFormatManagerWindow
(
Window
*
pParent
,
ScDocument
*
pDoc
,
ScConditionalFormatList
*
pFormatList
);
void
DeleteSelection
();
ScConditionalFormat
*
GetSelection
();
...
...
@@ -66,7 +65,7 @@ public:
class
ScCondFormatManagerCtrl
:
Control
{
public
:
ScCondFormatManagerCtrl
(
Window
*
pParent
,
ScDocument
*
pDoc
,
ScConditionalFormatList
*
pFormatList
,
const
ScAddress
&
rPos
);
ScCondFormatManagerCtrl
(
Window
*
pParent
,
ScDocument
*
pDoc
,
ScConditionalFormatList
*
pFormatList
);
ScConditionalFormat
*
GetSelection
();
void
DeleteSelection
();
...
...
sc/source/ui/inc/sortkeydlg.hxx
Dosyayı görüntüle @
4ee829af
...
...
@@ -69,7 +69,6 @@ class ScSortKeyWindow
{
private
:
VclBox
*
m_pBox
;
sal_Int32
nScrollPos
;
sal_Int32
nItemHeight
;
ScSortKeyItems
&
mrSortKeyItems
;
...
...
@@ -93,8 +92,6 @@ private:
VclScrolledWindow
&
m_rScrolledWindow
;
ScrollBar
&
m_rVertScroll
;
sal_Int32
nThumbPos
;
DECL_LINK
(
ScrollHdl
,
ScrollBar
*
);
public
:
...
...
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