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
a92cea7e
Kaydet (Commit)
a92cea7e
authored
Nis 17, 2015
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Windows compilation fixes.
Change-Id: Id04ff9302893654ae1f62db9f5005517c90e5db2
üst
85b01322
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
17 additions
and
3 deletions
+17
-3
taskpane.hxx
include/sfx2/taskpane.hxx
+1
-0
frmsel.hxx
include/svx/frmsel.hxx
+1
-0
PopupContainer.hxx
include/svx/sidebar/PopupContainer.hxx
+1
-0
taskpane.cxx
sfx2/source/dialog/taskpane.cxx
+4
-0
paneltabbar.cxx
svtools/source/toolpanel/paneltabbar.cxx
+1
-1
frmsel.cxx
svx/source/dialog/frmsel.cxx
+5
-0
PopupContainer.cxx
svx/source/sidebar/tools/PopupContainer.cxx
+4
-2
No files found.
include/sfx2/taskpane.hxx
Dosyayı görüntüle @
a92cea7e
...
@@ -93,6 +93,7 @@ namespace sfx2
...
@@ -93,6 +93,7 @@ namespace sfx2
vcl
::
Window
&
i_rParentWindow
,
vcl
::
Window
&
i_rParentWindow
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
frame
::
XFrame
>&
i_rDocumentFrame
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
frame
::
XFrame
>&
i_rDocumentFrame
);
);
virtual
~
ModuleTaskPane
();
/** determines whether a given module has any registered tool panels
/** determines whether a given module has any registered tool panels
*/
*/
...
...
include/svx/frmsel.hxx
Dosyayı görüntüle @
a92cea7e
...
@@ -84,6 +84,7 @@ class SVX_DLLPUBLIC FrameSelector : public Control
...
@@ -84,6 +84,7 @@ class SVX_DLLPUBLIC FrameSelector : public Control
{
{
public
:
public
:
FrameSelector
(
vcl
::
Window
*
pParent
);
FrameSelector
(
vcl
::
Window
*
pParent
);
virtual
~
FrameSelector
();
/** Initializes the control, enables/disables frame borders according to flags. */
/** Initializes the control, enables/disables frame borders according to flags. */
void
Initialize
(
FrameSelFlags
nFlags
);
void
Initialize
(
FrameSelFlags
nFlags
);
...
...
include/svx/sidebar/PopupContainer.hxx
Dosyayı görüntüle @
a92cea7e
...
@@ -34,6 +34,7 @@ class SVX_DLLPUBLIC PopupContainer
...
@@ -34,6 +34,7 @@ class SVX_DLLPUBLIC PopupContainer
{
{
public
:
public
:
PopupContainer
(
vcl
::
Window
*
pParent
);
PopupContainer
(
vcl
::
Window
*
pParent
);
virtual
~
PopupContainer
();
virtual
bool
Notify
(
NotifyEvent
&
rNEvt
)
SAL_OVERRIDE
;
virtual
bool
Notify
(
NotifyEvent
&
rNEvt
)
SAL_OVERRIDE
;
};
};
...
...
sfx2/source/dialog/taskpane.cxx
Dosyayı görüntüle @
a92cea7e
...
@@ -709,6 +709,10 @@ namespace sfx2
...
@@ -709,6 +709,10 @@ namespace sfx2
{
{
}
}
ModuleTaskPane
::~
ModuleTaskPane
()
{
disposeOnce
();
}
bool
ModuleTaskPane
::
ModuleHasToolPanels
(
const
Reference
<
XFrame
>&
i_rDocumentFrame
)
bool
ModuleTaskPane
::
ModuleHasToolPanels
(
const
Reference
<
XFrame
>&
i_rDocumentFrame
)
{
{
...
...
svtools/source/toolpanel/paneltabbar.cxx
Dosyayı görüntüle @
a92cea7e
...
@@ -515,7 +515,7 @@ namespace svt
...
@@ -515,7 +515,7 @@ namespace svt
// this mode requires the NWF framework to be able to render those items onto a virtual
// this mode requires the NWF framework to be able to render those items onto a virtual
// device. For some frameworks (some GTK themes, in particular), this is known to fail.
// device. For some frameworks (some GTK themes, in particular), this is known to fail.
// So, be on the safe side for the moment.
// So, be on the safe side for the moment.
m_pRenderer
.
reset
(
new
NWFTabItemRenderer
(
m_aRenderDevice
)
);
m_pRenderer
.
reset
(
new
NWFTabItemRenderer
(
*
m_aRenderDevice
.
get
()
)
);
else
else
#endif
#endif
if
(
m_aRenderDevice
->
IsNativeControlSupported
(
CTRL_TOOLBAR
,
PART_BUTTON
)
)
if
(
m_aRenderDevice
->
IsNativeControlSupported
(
CTRL_TOOLBAR
,
PART_BUTTON
)
)
...
...
svx/source/dialog/frmsel.cxx
Dosyayı görüntüle @
a92cea7e
...
@@ -791,6 +791,11 @@ FrameSelector::FrameSelector(vcl::Window* pParent)
...
@@ -791,6 +791,11 @@ FrameSelector::FrameSelector(vcl::Window* pParent)
EnableRTL
(
false
);
// #107808# don't mirror the mouse handling
EnableRTL
(
false
);
// #107808# don't mirror the mouse handling
}
}
FrameSelector
::~
FrameSelector
()
{
disposeOnce
();
}
extern
"C"
SAL_DLLPUBLIC_EXPORT
vcl
::
Window
*
SAL_CALL
makeSvxFrameSelector
(
vcl
::
Window
*
pParent
,
VclBuilder
::
stringmap
&
)
extern
"C"
SAL_DLLPUBLIC_EXPORT
vcl
::
Window
*
SAL_CALL
makeSvxFrameSelector
(
vcl
::
Window
*
pParent
,
VclBuilder
::
stringmap
&
)
{
{
return
new
FrameSelector
(
pParent
);
return
new
FrameSelector
(
pParent
);
...
...
svx/source/sidebar/tools/PopupContainer.cxx
Dosyayı görüntüle @
a92cea7e
...
@@ -27,8 +27,10 @@ PopupContainer::PopupContainer (vcl::Window* pParent)
...
@@ -27,8 +27,10 @@ PopupContainer::PopupContainer (vcl::Window* pParent)
{
{
}
}
PopupContainer
::~
PopupContainer
()
{
disposeOnce
();
}
bool
PopupContainer
::
Notify
(
NotifyEvent
&
rEvent
)
bool
PopupContainer
::
Notify
(
NotifyEvent
&
rEvent
)
{
{
...
...
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