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
ca0bf47a
Kaydet (Commit)
ca0bf47a
authored
May 06, 2015
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused CreatePopupWindowCascading virtual methods.
Change-Id: I44125b9909c0d81abd84c9666d44225e99c94c54
üst
af9b1a8b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
36 deletions
+1
-36
tbxctrl.hxx
include/sfx2/tbxctrl.hxx
+1
-2
layctrl.hxx
include/svx/layctrl.hxx
+0
-2
tbxitem.cxx
sfx2/source/toolbox/tbxitem.cxx
+0
-9
layctrl.cxx
svx/source/tbxctrls/layctrl.cxx
+0
-23
No files found.
include/sfx2/tbxctrl.hxx
Dosyayı görüntüle @
ca0bf47a
...
...
@@ -198,8 +198,7 @@ protected:
virtual
void
DoubleClick
();
virtual
void
Click
();
virtual
SfxPopupWindowType
GetPopupWindowType
()
const
;
virtual
VclPtr
<
SfxPopupWindow
>
CreatePopupWindow
();
virtual
SfxPopupWindow
*
CreatePopupWindowCascading
();
virtual
VclPtr
<
SfxPopupWindow
>
CreatePopupWindow
();
virtual
VclPtr
<
vcl
::
Window
>
CreateItemWindow
(
vcl
::
Window
*
pParent
);
// Must be called by subclass to set a new popup window instance
...
...
include/svx/layctrl.hxx
Dosyayı görüntüle @
ca0bf47a
...
...
@@ -32,7 +32,6 @@ private:
public
:
virtual
SfxPopupWindowType
GetPopupWindowType
()
const
SAL_OVERRIDE
;
virtual
VclPtr
<
SfxPopupWindow
>
CreatePopupWindow
()
SAL_OVERRIDE
;
virtual
SfxPopupWindow
*
CreatePopupWindowCascading
()
SAL_OVERRIDE
;
virtual
void
StateChanged
(
sal_uInt16
nSID
,
SfxItemState
eState
,
const
SfxPoolItem
*
pState
)
SAL_OVERRIDE
;
...
...
@@ -51,7 +50,6 @@ class SVX_DLLPUBLIC SvxColumnsToolBoxControl : public SfxToolBoxControl
public
:
virtual
SfxPopupWindowType
GetPopupWindowType
()
const
SAL_OVERRIDE
;
virtual
VclPtr
<
SfxPopupWindow
>
CreatePopupWindow
()
SAL_OVERRIDE
;
virtual
SfxPopupWindow
*
CreatePopupWindowCascading
()
SAL_OVERRIDE
;
SFX_DECL_TOOLBOX_CONTROL
();
...
...
sfx2/source/toolbox/tbxitem.cxx
Dosyayı görüntüle @
ca0bf47a
...
...
@@ -982,20 +982,11 @@ VclPtr<SfxPopupWindow> SfxToolBoxControl::CreatePopupWindow()
return
0
;
}
SfxPopupWindow
*
SfxToolBoxControl
::
CreatePopupWindowCascading
()
{
return
0
;
}
VclPtr
<
vcl
::
Window
>
SfxToolBoxControl
::
CreateItemWindow
(
vcl
::
Window
*
)
{
return
VclPtr
<
vcl
::
Window
>
();
}
SfxFrameStatusListener
::
SfxFrameStatusListener
(
const
Reference
<
XComponentContext
>&
rxContext
,
const
Reference
<
XFrame
>&
xFrame
,
...
...
svx/source/tbxctrls/layctrl.cxx
Dosyayı görüntüle @
ca0bf47a
...
...
@@ -741,17 +741,6 @@ VclPtr<SfxPopupWindow> SvxTableToolBoxControl::CreatePopupWindow()
return
0
;
}
SfxPopupWindow
*
SvxTableToolBoxControl
::
CreatePopupWindowCascading
()
{
if
(
bEnabled
)
return
VclPtr
<
TableWindow
>::
Create
(
GetSlotId
(),
m_aCommandURL
,
GetToolBox
().
GetItemText
(
GetId
()
),
GetToolBox
(),
m_xFrame
);
return
0
;
}
void
SvxTableToolBoxControl
::
StateChanged
(
sal_uInt16
,
SfxItemState
eState
,
const
SfxPoolItem
*
pState
)
{
if
(
pState
&&
pState
->
ISA
(
SfxUInt16Item
)
)
...
...
@@ -806,18 +795,6 @@ VclPtr<SfxPopupWindow> SvxColumnsToolBoxControl::CreatePopupWindow()
return
pWin
;
}
SfxPopupWindow
*
SvxColumnsToolBoxControl
::
CreatePopupWindowCascading
()
{
ColumnsWindow
*
pWin
=
0
;
if
(
bEnabled
)
{
pWin
=
VclPtr
<
ColumnsWindow
>::
Create
(
GetSlotId
(),
m_aCommandURL
,
GetToolBox
().
GetItemText
(
GetId
()
),
GetToolBox
(),
m_xFrame
);
}
return
pWin
;
}
void
SvxColumnsToolBoxControl
::
StateChanged
(
sal_uInt16
nSID
,
SfxItemState
eState
,
const
SfxPoolItem
*
pState
)
...
...
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