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
6246755d
Kaydet (Commit)
6246755d
authored
Tem 24, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
-Werror,-Wunused-private-field
Change-Id: Ib32a73e4f74ce7ccd19327ecaed84c16b5c60779
üst
6c853a98
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
1 addition
and
30 deletions
+1
-30
dlgctl3d.hxx
include/svx/dlgctl3d.hxx
+0
-2
fontworkgallery.hxx
include/svx/fontworkgallery.hxx
+0
-1
pagectrl.hxx
include/svx/pagectrl.hxx
+0
-3
svxpixelctlaccessiblecontext.cxx
svx/source/accessibility/svxpixelctlaccessiblecontext.cxx
+0
-10
dlgctl3d.cxx
svx/source/dialog/dlgctl3d.cxx
+0
-2
pagectrl.cxx
svx/source/dialog/pagectrl.cxx
+1
-4
svxpixelctlaccessiblecontext.hxx
svx/source/inc/svxpixelctlaccessiblecontext.hxx
+0
-2
GraphicPropertyPanel.hxx
svx/source/sidebar/graphic/GraphicPropertyPanel.hxx
+0
-5
fontworkgallery.cxx
svx/source/tbxctrls/fontworkgallery.cxx
+0
-1
No files found.
include/svx/dlgctl3d.hxx
Dosyayı görüntüle @
6246755d
...
...
@@ -66,8 +66,6 @@ public:
class
SVX_DLLPUBLIC
SAL_WARN_UNUSED
Svx3DLightControl
:
public
Svx3DPreviewControl
{
// Callback for interactive changes
Link
<>
maUserInteractiveChangeCallback
;
Link
<>
maUserSelectionChangeCallback
;
Link
<>
maChangeCallback
;
Link
<>
maSelectionChangeCallback
;
...
...
include/svx/fontworkgallery.hxx
Dosyayı görüntüle @
6246755d
...
...
@@ -68,7 +68,6 @@ class SVX_DLLPUBLIC SAL_WARN_UNUSED FontWorkGalleryDialog : public ModalDialog
sal_uInt16
mnThemeId
;
SdrView
*
mpSdrView
;
FmFormModel
*
mpModel
;
DECL_LINK
(
DoubleClickFavoriteHdl
,
void
*
);
DECL_LINK
(
ClickOKHdl
,
void
*
);
...
...
include/svx/pagectrl.hxx
Dosyayı görüntüle @
6246755d
...
...
@@ -68,9 +68,6 @@ private:
sal_uInt16
eUsage
;
OUString
aLeftText
;
OUString
aRightText
;
protected
:
virtual
void
Paint
(
vcl
::
RenderContext
&
rRenderContext
,
const
Rectangle
&
rRect
)
SAL_OVERRIDE
;
...
...
svx/source/accessibility/svxpixelctlaccessiblecontext.cxx
Dosyayı görüntüle @
6246755d
...
...
@@ -482,19 +482,11 @@ void SvxPixelCtlAccessible::NotifyChild(long nIndex,bool bSelect ,bool bCheck)
uno
::
Reference
<
XAccessible
>
SvxPixelCtlAccessible
::
CreateChild
(
long
nIndex
,
Point
mPoint
)
{
long
nX
=
mPoint
.
X
();
long
nY
=
mPoint
.
Y
();
if
(
AllSettings
::
GetLayoutRTL
())
{
nX
=
(
sal_uInt16
)
mrPixelCtl
.
GetWidth
()
-
1
-
nX
;
}
bool
bPixelColorOrBG
=
mrPixelCtl
.
GetBitmapPixel
(
sal_uInt16
(
nIndex
))
!=
0
;
Size
size
(
mrPixelCtl
.
GetWidth
()
/
mrPixelCtl
.
GetLineCount
(),
mrPixelCtl
.
GetHeight
()
/
mrPixelCtl
.
GetLineCount
());
uno
::
Reference
<
XAccessible
>
xChild
;
xChild
=
new
SvxPixelCtlAccessibleChild
(
mrPixelCtl
,
bPixelColorOrBG
,
Point
(
nX
,
nY
),
Rectangle
(
mPoint
,
size
),
this
,
nIndex
);
...
...
@@ -557,7 +549,6 @@ void SvxPixelCtlAccessibleChild::FireAccessibleEvent (
SvxPixelCtlAccessibleChild
::
SvxPixelCtlAccessibleChild
(
SvxPixelCtl
&
rWindow
,
bool
bPixelColorOrBG
,
const
Point
&
aPoint
,
const
Rectangle
&
rBoundingBox
,
const
uno
::
Reference
<
XAccessible
>&
rxParent
,
long
nIndexInParent
)
:
...
...
@@ -565,7 +556,6 @@ SvxPixelCtlAccessibleChild::SvxPixelCtlAccessibleChild(
mrParentWindow
(
rWindow
),
mxParent
(
rxParent
),
m_bPixelColorOrBG
(
bPixelColorOrBG
),
maPoint
(
aPoint
),
mpBoundingBox
(
new
Rectangle
(
rBoundingBox
)
),
mnIndexInParent
(
nIndexInParent
),
mnClientId
(
0
)
...
...
svx/source/dialog/dlgctl3d.cxx
Dosyayı görüntüle @
6246755d
...
...
@@ -252,8 +252,6 @@ void Svx3DPreviewControl::Set3DAttributes( const SfxItemSet& rAttr )
Svx3DLightControl
::
Svx3DLightControl
(
vcl
::
Window
*
pParent
,
WinBits
nStyle
)
:
Svx3DPreviewControl
(
pParent
,
nStyle
),
maUserInteractiveChangeCallback
(),
maUserSelectionChangeCallback
(),
maChangeCallback
(),
maSelectionChangeCallback
(),
maSelectedLight
(
NO_LIGHT_SELECTED
),
...
...
svx/source/dialog/pagectrl.cxx
Dosyayı görüntüle @
6246755d
...
...
@@ -73,10 +73,7 @@ SvxPageWindow::SvxPageWindow(vcl::Window* pParent)
bTable
(
false
),
bHorz
(
false
),
bVert
(
false
),
eUsage
(
SVX_PAGE_ALL
),
aLeftText
(),
aRightText
()
eUsage
(
SVX_PAGE_ALL
)
{
// Count in Twips by default
SetMapMode
(
MapMode
(
MAP_TWIP
));
...
...
svx/source/inc/svxpixelctlaccessiblecontext.hxx
Dosyayı görüntüle @
6246755d
...
...
@@ -71,7 +71,6 @@ class SvxPixelCtlAccessibleChild :
SvxPixelCtl
&
mrParentWindow
;
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
mxParent
;
bool
m_bPixelColorOrBG
;
//Pixel Color Or BackGround Color
Point
maPoint
;
Rectangle
*
mpBoundingBox
;
/// index of child in parent
long
mnIndexInParent
;
...
...
@@ -81,7 +80,6 @@ public:
SvxPixelCtlAccessibleChild
(
SvxPixelCtl
&
rWindow
,
bool
bPixelColorOrBG
,
const
Point
&
aPoint
,
const
Rectangle
&
rBounds
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>&
xParent
,
long
nIndexInParent
);
...
...
svx/source/sidebar/graphic/GraphicPropertyPanel.hxx
Dosyayı görüntüle @
6246755d
...
...
@@ -84,11 +84,6 @@ private:
::
sfx2
::
sidebar
::
ControllerItem
maGammaControl
;
::
sfx2
::
sidebar
::
ControllerItem
maModeControl
;
OUString
msNormal
;
OUString
msBW
;
OUString
msGray
;
OUString
msWater
;
css
::
uno
::
Reference
<
css
::
frame
::
XFrame
>
mxFrame
;
SfxBindings
*
mpBindings
;
...
...
svx/source/tbxctrls/fontworkgallery.cxx
Dosyayı görüntüle @
6246755d
...
...
@@ -73,7 +73,6 @@ FontWorkGalleryDialog::FontWorkGalleryDialog( SdrView* pSdrView, vcl::Window* pP
ModalDialog
(
pParent
,
"FontworkGalleryDialog"
,
"svx/ui/fontworkgallerydialog.ui"
),
mnThemeId
(
0xffff
),
mpSdrView
(
pSdrView
),
mpModel
(
static_cast
<
FmFormModel
*>
(
pSdrView
->
GetModel
())
),
mppSdrObject
(
NULL
),
mpDestModel
(
NULL
)
{
...
...
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