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
8f3625e6
Kaydet (Commit)
8f3625e6
authored
May 10, 2013
tarafından
Andre Fischer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
122047: Adding virutal destructors to interfaces to prevent problems with older compilers.
üst
f213ea43
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
8 deletions
+13
-8
AlignmentPropertyPanel.hxx
sc/source/ui/sidebar/AlignmentPropertyPanel.hxx
+0
-1
CellAppearancePropertyPanel.hxx
sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx
+0
-1
NumberFormatPropertyPanel.hxx
sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx
+1
-2
Library_sfx.mk
sfx2/Library_sfx.mk
+2
-0
IContextChangeReceiver.hxx
sfx2/inc/sfx2/sidebar/IContextChangeReceiver.hxx
+4
-2
ILayoutableWindow.hxx
sfx2/inc/sfx2/sidebar/ILayoutableWindow.hxx
+4
-1
SidebarPanelBase.hxx
sfx2/inc/sfx2/sidebar/SidebarPanelBase.hxx
+2
-1
No files found.
sc/source/ui/sidebar/AlignmentPropertyPanel.hxx
Dosyayı görüntüle @
8f3625e6
...
...
@@ -22,7 +22,6 @@
#ifndef SC_PROPERTYPANEL_ALIGNMENT_HXX
#define SC_PROPERTYPANEL_ALIGNMENT_HXX
#include <sfx2/sidebar/SidebarPanelBase.hxx>
#include <sfx2/sidebar/ControllerItem.hxx>
#include <sfx2/sidebar/IContextChangeReceiver.hxx>
#include <vcl/fixed.hxx>
...
...
sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx
Dosyayı görüntüle @
8f3625e6
...
...
@@ -22,7 +22,6 @@
#ifndef SC_PROPERTYPANEL_APPEARANCE_HXX
#define SC_PROPERTYPANEL_APPEARANCE_HXX
#include <sfx2/sidebar/SidebarPanelBase.hxx>
#include <sfx2/sidebar/ControllerItem.hxx>
#include <sfx2/sidebar/IContextChangeReceiver.hxx>
#include <boost/scoped_ptr.hpp>
...
...
sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx
Dosyayı görüntüle @
8f3625e6
...
...
@@ -22,7 +22,6 @@
#ifndef SC_PROPERTYPANEL_NUMFORMAT_HXX
#define SC_PROPERTYPANEL_NUMFORMAT_HXX
#include <sfx2/sidebar/SidebarPanelBase.hxx>
#include <sfx2/sidebar/ControllerItem.hxx>
#include <sfx2/sidebar/IContextChangeReceiver.hxx>
#include <boost/scoped_ptr.hpp>
...
...
@@ -97,6 +96,6 @@ private:
}
}
// end of namespace ::sc::sidebar
#endif
SC_PROPERTYPANEL_NUMFORMAT_HXX
#endif
// eof
sfx2/Library_sfx.mk
Dosyayı görüntüle @
8f3625e6
...
...
@@ -234,6 +234,8 @@ $(eval $(call gb_Library_add_exception_objects,sfx,\
sfx2/source/sidebar/EnumContext \
sfx2/source/sidebar/FocusManager \
sfx2/source/sidebar/MenuButton \
sfx2/source/sidebar/IContextChangeReceiver \
sfx2/source/sidebar/ILayoutableWindow \
sfx2/source/sidebar/Paint \
sfx2/source/sidebar/Panel \
sfx2/source/sidebar/PanelDescriptor \
...
...
sfx2/inc/sfx2/sidebar/IContextChangeReceiver.hxx
Dosyayı görüntüle @
8f3625e6
...
...
@@ -23,6 +23,7 @@
#define SFX_SIDEBAR_CONTEXT_CHANGE_RECEIVER_INTERFACE_HXX
#include "EnumContext.hxx"
#include "sfx2/dllapi.h"
namespace
sfx2
{
namespace
sidebar
{
...
...
@@ -31,8 +32,9 @@ namespace sfx2 { namespace sidebar {
class
SFX2_DLLPUBLIC
IContextChangeReceiver
{
public
:
virtual
void
HandleContextChange
(
const
EnumContext
aContext
)
=
0
;
virtual
~
IContextChangeReceiver
(
void
);
virtual
void
HandleContextChange
(
const
EnumContext
aContext
)
=
0
;
};
}
}
// end of namespace ::sd::sidebar
...
...
sfx2/inc/sfx2/sidebar/ILayoutableWindow.hxx
Dosyayı görüntüle @
8f3625e6
...
...
@@ -22,6 +22,7 @@
#ifndef SFX_SIDEBAR_LAYOUTABLE_WINDOW_INTERFACE_HXX
#define SFX_SIDEBAR_LAYOUTABLE_WINDOW_INTERFACE_HXX
#include "sfx2/dllapi.h"
#include <tools/gen.hxx>
#include <sal/types.h>
...
...
@@ -32,9 +33,11 @@ class Window;
namespace
sfx2
{
namespace
sidebar
{
class
ILayoutableWindow
class
SFX2_DLLPUBLIC
ILayoutableWindow
{
public
:
virtual
~
ILayoutableWindow
(
void
);
/** Return the preferred height with the constraint, that the
window will be set to the given width.
*/
...
...
sfx2/inc/sfx2/sidebar/SidebarPanelBase.hxx
Dosyayı görüntüle @
8f3625e6
...
...
@@ -23,6 +23,7 @@
#define SFX_SIDEBAR_PANEL_BASE_HXX
#include "EnumContext.hxx"
#include "IContextChangeReceiver.hxx"
#include <cppuhelper/compbase4.hxx>
#include <cppuhelper/basemutex.hxx>
...
...
@@ -67,7 +68,7 @@ public:
static
cssu
::
Reference
<
css
::
ui
::
XUIElement
>
Create
(
const
::
rtl
::
OUString
&
rsResourceURL
,
const
cssu
::
Reference
<
css
::
frame
::
XFrame
>&
rxFrame
,
Window
*
mpWindow
,
Window
*
pControl
,
const
css
::
ui
::
LayoutSize
&
rLayoutSize
);
// XContextChangeEventListener
...
...
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