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
aec97e2a
Kaydet (Commit)
aec97e2a
authored
Ara 23, 2011
tarafından
August Sodora
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: Remove unused code
üst
a0ebf6ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
41 deletions
+0
-41
ctredlin.hxx
svx/inc/svx/ctredlin.hxx
+0
-4
ctredlin.cxx
svx/source/dialog/ctredlin.cxx
+0
-37
No files found.
svx/inc/svx/ctredlin.hxx
Dosyayı görüntüle @
aec97e2a
...
@@ -403,7 +403,6 @@ protected:
...
@@ -403,7 +403,6 @@ protected:
virtual
void
Resize
();
virtual
void
Resize
();
public
:
public
:
SvxAcceptChgCtr
(
Window
*
pParent
,
WinBits
nWinStyle
=
0
);
SvxAcceptChgCtr
(
Window
*
pParent
,
const
ResId
&
rResId
);
SvxAcceptChgCtr
(
Window
*
pParent
,
const
ResId
&
rResId
);
~
SvxAcceptChgCtr
();
~
SvxAcceptChgCtr
();
...
@@ -413,9 +412,6 @@ public:
...
@@ -413,9 +412,6 @@ public:
void
ShowFilterPage
();
void
ShowFilterPage
();
void
ShowViewPage
();
void
ShowViewPage
();
sal_Bool
IsFilterPageVisible
();
sal_Bool
IsViewPageVisible
();
SvxTPFilter
*
GetFilterPage
();
SvxTPFilter
*
GetFilterPage
();
SvxTPView
*
GetViewPage
();
SvxTPView
*
GetViewPage
();
SvxRedlinTable
*
GetViewTable
();
SvxRedlinTable
*
GetViewTable
();
...
...
svx/source/dialog/ctredlin.cxx
Dosyayı görüntüle @
aec97e2a
...
@@ -1338,33 +1338,6 @@ static Size gDiffSize;
...
@@ -1338,33 +1338,6 @@ static Size gDiffSize;
// class SvxAcceptChgCtr
// class SvxAcceptChgCtr
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
SvxAcceptChgCtr
::
SvxAcceptChgCtr
(
Window
*
pParent
,
WinBits
nWinStyle
)
:
Control
(
pParent
,
nWinStyle
|
WB_DIALOGCONTROL
),
aTCAccept
(
this
,
WB_TABSTOP
|
WB_DIALOGCONTROL
)
{
pTPFilter
=
new
SvxTPFilter
(
&
aTCAccept
);
pTPView
=
new
SvxTPView
(
&
aTCAccept
);
aMinSize
=
pTPView
->
GetMinSizePixel
();
aTCAccept
.
InsertPage
(
TP_VIEW
,
pTPView
->
GetMyName
());
aTCAccept
.
InsertPage
(
TP_FILTER
,
pTPFilter
->
GetMyName
());
aTCAccept
.
SetTabPage
(
TP_VIEW
,
pTPView
);
aTCAccept
.
SetTabPage
(
TP_FILTER
,
pTPFilter
);
aTCAccept
.
SetHelpId
(
HID_REDLINING_TABCONTROL
);
aTCAccept
.
SetTabPageSizePixel
(
aMinSize
);
Size
aSize
=
aTCAccept
.
GetSizePixel
();
gDiffSize
.
Height
()
=
aSize
.
Height
()
-
aMinSize
.
Height
();
gDiffSize
.
Width
()
=
aSize
.
Width
()
-
aMinSize
.
Width
();
pTPFilter
->
SetRedlinTable
(
GetViewTable
());
aTCAccept
.
Show
();
ShowViewPage
();
}
SvxAcceptChgCtr
::
SvxAcceptChgCtr
(
Window
*
pParent
,
const
ResId
&
rResId
)
SvxAcceptChgCtr
::
SvxAcceptChgCtr
(
Window
*
pParent
,
const
ResId
&
rResId
)
:
Control
(
pParent
,
rResId
),
:
Control
(
pParent
,
rResId
),
aTCAccept
(
this
,
WB_TABSTOP
|
WB_DIALOGCONTROL
)
aTCAccept
(
this
,
WB_TABSTOP
|
WB_DIALOGCONTROL
)
...
@@ -1447,16 +1420,6 @@ void SvxAcceptChgCtr::ShowViewPage()
...
@@ -1447,16 +1420,6 @@ void SvxAcceptChgCtr::ShowViewPage()
aTCAccept
.
SetCurPageId
(
TP_VIEW
);
aTCAccept
.
SetCurPageId
(
TP_VIEW
);
}
}
sal_Bool
SvxAcceptChgCtr
::
IsFilterPageVisible
()
{
return
(
aTCAccept
.
GetCurPageId
()
==
TP_FILTER
);
}
sal_Bool
SvxAcceptChgCtr
::
IsViewPageVisible
()
{
return
(
aTCAccept
.
GetCurPageId
()
==
TP_VIEW
);
}
SvxTPFilter
*
SvxAcceptChgCtr
::
GetFilterPage
()
SvxTPFilter
*
SvxAcceptChgCtr
::
GetFilterPage
()
{
{
return
pTPFilter
;
return
pTPFilter
;
...
...
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