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
9fe256e5
Kaydet (Commit)
9fe256e5
authored
Ara 04, 2014
tarafından
Tobias Madl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
changed inherited timer to idle
Change-Id: I9da6d08964c32e4aafbc9cebc7840eb517f9c33a
üst
51b02592
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
objectcontactofpageview.hxx
svx/inc/sdr/contact/objectcontactofpageview.hxx
+1
-1
eventhandler.hxx
svx/source/inc/eventhandler.hxx
+2
-2
objectcontactofpageview.cxx
svx/source/sdr/contact/objectcontactofpageview.cxx
+1
-1
viewobjectcontactofpageobj.cxx
svx/source/sdr/contact/viewobjectcontactofpageobj.cxx
+2
-2
eventhandler.cxx
svx/source/sdr/event/eventhandler.cxx
+2
-2
No files found.
svx/inc/sdr/contact/objectcontactofpageview.hxx
Dosyayı görüntüle @
9fe256e5
...
...
@@ -34,7 +34,7 @@ namespace sdr
{
namespace
contact
{
class
ObjectContactOfPageView
:
public
ObjectContact
,
public
Timer
class
ObjectContactOfPageView
:
public
ObjectContact
,
public
Idle
{
protected
:
// the owner of this ObjectContactOfPageView. Set from constructor and not
...
...
svx/source/inc/eventhandler.hxx
Dosyayı görüntüle @
9fe256e5
...
...
@@ -92,10 +92,10 @@ namespace sdr
{
namespace
event
{
class
TimerEventHandler
:
public
EventHandler
,
public
Timer
class
TimerEventHandler
:
public
EventHandler
,
public
Idle
{
public
:
TimerEventHandler
(
sal_uInt32
nTimeout
=
1L
);
TimerEventHandler
(
IdlePriority
ePriority
=
VCL_IDLE_PRIORITY_HIGH
);
virtual
~
TimerEventHandler
();
...
...
svx/source/sdr/contact/objectcontactofpageview.cxx
Dosyayı görüntüle @
9fe256e5
...
...
@@ -59,7 +59,7 @@ namespace sdr
setPreviewRenderer
(((
SdrPaintView
&
)
rPageWindow
.
GetPageView
().
GetView
()).
IsPreviewRenderer
());
// init timer
Set
Timeout
(
1
);
Set
Priority
(
VCL_IDLE_PRIORITY_HIGH
);
Stop
();
}
...
...
svx/source/sdr/contact/viewobjectcontactofpageobj.cxx
Dosyayı görüntüle @
9fe256e5
...
...
@@ -36,7 +36,7 @@ using namespace com::sun::star;
namespace
sdr
{
namespace
contact
{
class
PagePrimitiveExtractor
:
public
ObjectContactOfPagePainter
,
public
Timer
class
PagePrimitiveExtractor
:
public
ObjectContactOfPagePainter
,
public
Idle
{
private
:
// the ViewObjectContactOfPageObj using this painter
...
...
@@ -83,7 +83,7 @@ PagePrimitiveExtractor::PagePrimitiveExtractor(
setPreviewRenderer
(
true
);
// init timer
Set
Timeout
(
1
);
Set
Priority
(
VCL_IDLE_PRIORITY_HIGH
);
Stop
();
}
...
...
svx/source/sdr/event/eventhandler.cxx
Dosyayı görüntüle @
9fe256e5
...
...
@@ -121,9 +121,9 @@ namespace sdr
{
namespace
event
{
TimerEventHandler
::
TimerEventHandler
(
sal_uInt32
nTimeout
)
TimerEventHandler
::
TimerEventHandler
(
IdlePriority
ePriority
)
{
Set
Timeout
(
nTimeout
);
Set
Priority
(
ePriority
);
Stop
();
}
...
...
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