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
548dbc6b
Kaydet (Commit)
548dbc6b
authored
Ara 22, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1260296 Unchecked dynamic_cast
Change-Id: Ib19609c3f4c83ae8baef83bcdadee79e69743df5
üst
6acf1c7a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
swmodalredlineacceptdlg.cxx
sw/source/ui/misc/swmodalredlineacceptdlg.cxx
+1
-1
redlndlg.hxx
sw/source/uibase/inc/redlndlg.hxx
+1
-1
redlndlg.cxx
sw/source/uibase/misc/redlndlg.cxx
+5
-4
No files found.
sw/source/ui/misc/swmodalredlineacceptdlg.cxx
Dosyayı görüntüle @
548dbc6b
...
@@ -47,7 +47,7 @@ SwModalRedlineAcceptDlg::SwModalRedlineAcceptDlg(vcl::Window *pParent)
...
@@ -47,7 +47,7 @@ SwModalRedlineAcceptDlg::SwModalRedlineAcceptDlg(vcl::Window *pParent)
:
SfxModalDialog
(
pParent
,
:
SfxModalDialog
(
pParent
,
"AcceptRejectChangesDialog"
,
"svx/ui/acceptrejectchangesdialog.ui"
)
"AcceptRejectChangesDialog"
,
"svx/ui/acceptrejectchangesdialog.ui"
)
{
{
pImplDlg
=
new
SwRedlineAcceptDlg
(
this
,
get_content_area
(),
true
);
pImplDlg
=
new
SwRedlineAcceptDlg
(
this
,
this
,
get_content_area
(),
true
);
pImplDlg
->
Initialize
(
GetExtraData
());
pImplDlg
->
Initialize
(
GetExtraData
());
pImplDlg
->
Activate
();
// for data's initialisation
pImplDlg
->
Activate
();
// for data's initialisation
...
...
sw/source/uibase/inc/redlndlg.hxx
Dosyayı görüntüle @
548dbc6b
...
@@ -114,7 +114,7 @@ class SW_DLLPUBLIC SwRedlineAcceptDlg
...
@@ -114,7 +114,7 @@ class SW_DLLPUBLIC SwRedlineAcceptDlg
SAL_DLLPRIVATE
sal_uInt16
GetRedlinePos
(
const
SvTreeListEntry
&
rEntry
)
const
;
SAL_DLLPRIVATE
sal_uInt16
GetRedlinePos
(
const
SvTreeListEntry
&
rEntry
)
const
;
public
:
public
:
SwRedlineAcceptDlg
(
vcl
::
Window
*
pParent
,
vcl
::
Window
*
pContentArea
,
bool
bAutoFmt
=
false
);
SwRedlineAcceptDlg
(
vcl
::
Window
*
pParent
,
VclBuilderContainer
*
pBuilder
,
vcl
::
Window
*
pContentArea
,
bool
bAutoFmt
=
false
);
virtual
~
SwRedlineAcceptDlg
();
virtual
~
SwRedlineAcceptDlg
();
DECL_LINK
(
FilterChangedHdl
,
void
*
pDummy
=
0
);
DECL_LINK
(
FilterChangedHdl
,
void
*
pDummy
=
0
);
...
...
sw/source/uibase/misc/redlndlg.cxx
Dosyayı görüntüle @
548dbc6b
...
@@ -89,7 +89,7 @@ SwModelessRedlineAcceptDlg::SwModelessRedlineAcceptDlg(
...
@@ -89,7 +89,7 @@ SwModelessRedlineAcceptDlg::SwModelessRedlineAcceptDlg(
"AcceptRejectChangesDialog"
,
"svx/ui/acceptrejectchangesdialog.ui"
)
"AcceptRejectChangesDialog"
,
"svx/ui/acceptrejectchangesdialog.ui"
)
,
pChildWin
(
pChild
)
,
pChildWin
(
pChild
)
{
{
pImplDlg
=
new
SwRedlineAcceptDlg
(
this
,
get_content_area
());
pImplDlg
=
new
SwRedlineAcceptDlg
(
this
,
this
,
get_content_area
());
}
}
void
SwModelessRedlineAcceptDlg
::
Activate
()
void
SwModelessRedlineAcceptDlg
::
Activate
()
...
@@ -141,9 +141,10 @@ SwModelessRedlineAcceptDlg::~SwModelessRedlineAcceptDlg()
...
@@ -141,9 +141,10 @@ SwModelessRedlineAcceptDlg::~SwModelessRedlineAcceptDlg()
delete
pImplDlg
;
delete
pImplDlg
;
}
}
SwRedlineAcceptDlg
::
SwRedlineAcceptDlg
(
vcl
::
Window
*
pParent
,
vcl
::
Window
*
pContentArea
,
bool
bAutoFmt
)
:
SwRedlineAcceptDlg
::
SwRedlineAcceptDlg
(
vcl
::
Window
*
pParent
,
VclBuilderContainer
*
pBuilder
,
vcl
::
Window
*
pContentArea
,
bool
bAutoFmt
)
:
pParentDlg
(
pParent
),
pParentDlg
(
pParent
),
aTabPagesCTRL
(
pContentArea
,
dynamic_cast
<
VclBuilderContainer
*>
(
pParent
)
),
aTabPagesCTRL
(
pContentArea
,
pBuilder
),
aPopup
(
SW_RES
(
MN_REDLINE_POPUP
)),
aPopup
(
SW_RES
(
MN_REDLINE_POPUP
)),
sInserted
(
SW_RES
(
STR_REDLINE_INSERTED
)),
sInserted
(
SW_RES
(
STR_REDLINE_INSERTED
)),
sDeleted
(
SW_RES
(
STR_REDLINE_DELETED
)),
sDeleted
(
SW_RES
(
STR_REDLINE_DELETED
)),
...
@@ -1209,7 +1210,7 @@ void SwRedlineAcceptDlg::FillInfo(OUString &rExtraData) const
...
@@ -1209,7 +1210,7 @@ void SwRedlineAcceptDlg::FillInfo(OUString &rExtraData) const
SwRedlineAcceptPanel
::
SwRedlineAcceptPanel
(
vcl
::
Window
*
pParent
,
const
css
::
uno
::
Reference
<
css
::
frame
::
XFrame
>&
rFrame
)
SwRedlineAcceptPanel
::
SwRedlineAcceptPanel
(
vcl
::
Window
*
pParent
,
const
css
::
uno
::
Reference
<
css
::
frame
::
XFrame
>&
rFrame
)
:
PanelLayout
(
pParent
,
"ManageChangesPanel"
,
"modules/swriter/ui/managechangessidebar.ui"
,
rFrame
)
:
PanelLayout
(
pParent
,
"ManageChangesPanel"
,
"modules/swriter/ui/managechangessidebar.ui"
,
rFrame
)
{
{
mpImplDlg
=
new
SwRedlineAcceptDlg
(
this
,
get
<
VclGrid
>
(
"content_area"
));
mpImplDlg
=
new
SwRedlineAcceptDlg
(
this
,
this
,
get
<
VclGrid
>
(
"content_area"
));
mpImplDlg
->
Init
();
mpImplDlg
->
Init
();
...
...
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