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
49439d4a
Kaydet (Commit)
49439d4a
authored
Mar 04, 2015
tarafından
Tobias Madl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Timer: patch for commit
06d73142
Change-Id: I762062a4782438ec5bbcb53da9a42f44db65c40d
üst
ff52f4e4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
scheduler.hxx
include/vcl/scheduler.hxx
+1
-1
timer.hxx
include/vcl/timer.hxx
+1
-1
scheduler.cxx
vcl/source/app/scheduler.cxx
+2
-1
No files found.
include/vcl/scheduler.hxx
Dosyayı görüntüle @
49439d4a
...
@@ -83,7 +83,7 @@ public:
...
@@ -83,7 +83,7 @@ public:
static
void
ImplDeInitScheduler
();
static
void
ImplDeInitScheduler
();
/// Process all pending idle tasks ahead of time in priority order.
/// Process all pending idle tasks ahead of time in priority order.
static
void
CallbackTaskScheduling
();
static
void
CallbackTaskScheduling
(
bool
ignore
);
static
void
ProcessTaskScheduling
(
bool
bTimer
);
static
void
ProcessTaskScheduling
(
bool
bTimer
);
};
};
...
...
include/vcl/timer.hxx
Dosyayı görüntüle @
49439d4a
...
@@ -44,7 +44,7 @@ public:
...
@@ -44,7 +44,7 @@ public:
void
SetTimeoutHdl
(
const
Link
&
rLink
)
{
maTimeoutHdl
=
rLink
;
}
void
SetTimeoutHdl
(
const
Link
&
rLink
)
{
maTimeoutHdl
=
rLink
;
}
const
Link
&
GetTimeoutHdl
()
const
{
return
maTimeoutHdl
;
}
const
Link
&
GetTimeoutHdl
()
const
{
return
maTimeoutHdl
;
}
virtual
void
Invoke
()
SAL_OVERRIDE
;
virtual
void
Invoke
()
SAL_OVERRIDE
;
v
irtual
v
oid
Timeout
()
{
Invoke
();
}
void
Timeout
()
{
Invoke
();
}
Timer
&
operator
=
(
const
Timer
&
rTimer
);
Timer
&
operator
=
(
const
Timer
&
rTimer
);
void
Start
()
SAL_OVERRIDE
;
void
Start
()
SAL_OVERRIDE
;
};
};
...
...
vcl/source/app/scheduler.cxx
Dosyayı görüntüle @
49439d4a
...
@@ -90,8 +90,9 @@ void Scheduler::ImplDeInitScheduler()
...
@@ -90,8 +90,9 @@ void Scheduler::ImplDeInitScheduler()
}
}
}
}
void
Scheduler
::
CallbackTaskScheduling
()
void
Scheduler
::
CallbackTaskScheduling
(
bool
ignore
)
{
{
(
void
)
ignore
;
Scheduler
::
ProcessTaskScheduling
(
true
);
Scheduler
::
ProcessTaskScheduling
(
true
);
}
}
...
...
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