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
746b518c
Kaydet (Commit)
746b518c
authored
Nis 10, 2015
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More misc. cleanup.
Change-Id: I91d2c45a7082fd989f440fff9e1322e4571dc2b2
üst
14168dfb
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
10 deletions
+13
-10
vclxaccessibletoolbox.cxx
accessibility/source/standard/vclxaccessibletoolbox.cxx
+1
-1
splash.cxx
desktop/source/splash/splash.cxx
+1
-1
cairo_gtk3_cairo.cxx
vcl/unx/gtk3/gdi/cairo_gtk3_cairo.cxx
+2
-2
vcldemo.cxx
vcl/workben/vcldemo.cxx
+9
-6
No files found.
accessibility/source/standard/vclxaccessibletoolbox.cxx
Dosyayı görüntüle @
746b518c
...
@@ -624,7 +624,7 @@ void VCLXAccessibleToolBox::ProcessWindowEvent( const VclWindowEvent& rVclWindow
...
@@ -624,7 +624,7 @@ void VCLXAccessibleToolBox::ProcessWindowEvent( const VclWindowEvent& rVclWindow
VCLXAccessibleToolBox
*
pParent
=
static_cast
<
VCLXAccessibleToolBox
*
>
(
VCLXAccessibleToolBox
*
pParent
=
static_cast
<
VCLXAccessibleToolBox
*
>
(
pWin
->
GetParent
()
->
GetAccessible
()
->
getAccessibleContext
().
get
()
);
pWin
->
GetParent
()
->
GetAccessible
()
->
getAccessibleContext
().
get
()
);
if
(
pParent
)
if
(
pParent
)
pParent
->
ReleaseSubToolBox
(
static_cast
<
ToolBox
*>
(
pWin
));
pParent
->
ReleaseSubToolBox
(
static_cast
<
ToolBox
*>
(
pWin
.
get
()
));
}
}
// dispose all items
// dispose all items
...
...
desktop/source/splash/splash.cxx
Dosyayı görüntüle @
746b518c
...
@@ -629,7 +629,7 @@ void SplashScreenWindow::Paint( const Rectangle&)
...
@@ -629,7 +629,7 @@ void SplashScreenWindow::Paint( const Rectangle&)
}
}
if
(
(
DrawNativeControl
(
CTRL_INTROPROGRESS
,
PART_ENTIRE_CONTROL
,
aDrawRect
,
if
(
(
DrawNativeControl
(
CTRL_INTROPROGRESS
,
PART_ENTIRE_CONTROL
,
aDrawRect
,
ControlState
::
ENABLED
,
aValue
,
_sProgressText
))
)
ControlState
::
ENABLED
,
aValue
,
pSpl
->
_sProgressText
))
)
{
{
return
;
return
;
}
}
...
...
vcl/unx/gtk3/gdi/cairo_gtk3_cairo.cxx
Dosyayı görüntüle @
746b518c
...
@@ -107,9 +107,9 @@ namespace cairo
...
@@ -107,9 +107,9 @@ namespace cairo
mpGraphics
->
WidgetQueueDraw
();
mpGraphics
->
WidgetQueueDraw
();
}
}
boost
::
shared_p
tr
<
VirtualDevice
>
Gtk3Surface
::
createVirtualDevice
()
const
VclP
tr
<
VirtualDevice
>
Gtk3Surface
::
createVirtualDevice
()
const
{
{
return
boost
::
shared_ptr
<
VirtualDevice
>
(
new
VirtualDevice
(
NULL
,
Size
(
1
,
1
),
0
)
);
return
VclPtrInstance
<
VirtualDevice
>
(
nullptr
,
Size
(
1
,
1
),
0
);
}
}
}
}
...
...
vcl/workben/vcldemo.cxx
Dosyayı görüntüle @
746b518c
...
@@ -1457,8 +1457,8 @@ public:
...
@@ -1457,8 +1457,8 @@ public:
DemoWidgets
()
:
DemoWidgets
()
:
WorkWindow
(
NULL
,
WB_STDWORK
),
WorkWindow
(
NULL
,
WB_STDWORK
),
mpBox
(
VclPtrInstance
<
VclVBox
>
(
this
,
false
,
3
)),
mpBox
(
VclPtrInstance
<
VclVBox
>
(
this
,
false
,
3
)),
mpToolbox
(
VclPtrInstance
<
ToolBox
>
(
mpBox
)),
mpToolbox
(
VclPtrInstance
<
ToolBox
>
(
mpBox
.
get
()
)),
mpButton
(
VclPtrInstance
<
PushButton
>
(
mpBox
))
mpButton
(
VclPtrInstance
<
PushButton
>
(
mpBox
.
get
()
))
{
{
SetText
(
"VCL widget demo"
);
SetText
(
"VCL widget demo"
);
...
@@ -1503,7 +1503,7 @@ public:
...
@@ -1503,7 +1503,7 @@ public:
DrawWallpaper
(
aWholeSize
,
aWallpaper
);
DrawWallpaper
(
aWholeSize
,
aWallpaper
);
Pop
();
Pop
();
ScopedVclPtr
<
VirtualDevice
>
pDev
(
new
VirtualDevice
(
*
this
)
);
ScopedVclPtr
Instance
<
VirtualDevice
>
pDev
(
*
this
);
pDev
->
EnableRTL
(
IsRTLEnabled
());
pDev
->
EnableRTL
(
IsRTLEnabled
());
pDev
->
SetOutputSizePixel
(
aExclude
.
GetSize
());
pDev
->
SetOutputSizePixel
(
aExclude
.
GetSize
());
...
@@ -1617,19 +1617,22 @@ public:
...
@@ -1617,19 +1617,22 @@ public:
}
}
ScopedVclPtrInstance
<
DemoWin
>
aMainWin
(
aRenderer
,
bThreads
);
ScopedVclPtrInstance
<
DemoWin
>
aMainWin
(
aRenderer
,
bThreads
);
VclPtr
<
DemoWidgets
>
a
Widgets
;
VclPtr
<
DemoWidgets
>
x
Widgets
;
VclPtr
<
DemoPopup
>
xPopup
;
VclPtr
<
DemoPopup
>
xPopup
;
aMainWin
->
SetText
(
"Interactive VCL demo #1"
);
aMainWin
->
SetText
(
"Interactive VCL demo #1"
);
if
(
bWidgets
)
if
(
bWidgets
)
xWidgets
.
reset
(
new
DemoWidgets
()
);
xWidgets
=
VclPtrInstance
<
DemoWidgets
>
(
);
else
if
(
bPopup
)
else
if
(
bPopup
)
xPopup
.
reset
(
new
DemoPopup
()
);
xPopup
=
VclPtrInstance
<
DemoPopup
>
(
);
else
else
aMainWin
->
Show
();
aMainWin
->
Show
();
Application
::
Execute
();
Application
::
Execute
();
xWidgets
.
disposeAndClear
();
xPopup
.
disposeAndClear
();
}
}
catch
(
const
css
::
uno
::
Exception
&
e
)
catch
(
const
css
::
uno
::
Exception
&
e
)
{
{
...
...
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