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
d2b70197
Kaydet (Commit)
d2b70197
authored
Kas 11, 2014
tarafından
Jennifer Liebel
Kaydeden (comit)
Tobias Madl
Ara 09, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
changed timers to idle
Change-Id: I6bb3225c171b1637f283de64a38dcff91f3c662c
üst
8a0ae49a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
12 deletions
+12
-12
filedlg.cxx
sd/source/ui/dlg/filedlg.cxx
+6
-6
SlsCacheCompactor.cxx
sd/source/ui/slidesorter/cache/SlsCacheCompactor.cxx
+1
-1
svimpbox.cxx
svtools/source/contnr/svimpbox.cxx
+3
-3
svimpbox.hxx
svtools/source/inc/svimpbox.hxx
+1
-1
fmshimp.hxx
svx/source/inc/fmshimp.hxx
+1
-1
No files found.
sd/source/ui/dlg/filedlg.cxx
Dosyayı görüntüle @
d2b70197
...
...
@@ -59,7 +59,7 @@ private:
DECL_LINK
(
PlayMusicHdl
,
void
*
);
Timer
maUpdateTimer
;
Idle
maUpdateIdle
;
DECL_LINK
(
IsMusicStoppedHdl
,
void
*
);
...
...
@@ -97,7 +97,7 @@ void SAL_CALL SdFileDialog_Imp::ControlStateChanged( const css::ui::dialogs::Fil
IMPL_LINK_NOARG
(
SdFileDialog_Imp
,
PlayMusicHdl
)
{
maUpdate
Timer
.
Stop
();
maUpdate
Idle
.
Stop
();
mnPlaySoundEvent
=
0
;
if
(
mxPlayer
.
is
())
...
...
@@ -132,8 +132,8 @@ IMPL_LINK_NOARG(SdFileDialog_Imp, PlayMusicHdl)
{
mxPlayer
.
set
(
avmedia
::
MediaWindow
::
createPlayer
(
aUrl
,
""
),
css
::
uno
::
UNO_QUERY_THROW
);
mxPlayer
->
start
();
maUpdate
Timer
.
SetTimeout
(
100
);
maUpdate
Timer
.
Start
();
maUpdate
Idle
.
SetPriority
(
VCL_IDLE_PRIORITY_LOW
);
maUpdate
Idle
.
Start
();
}
catch
(
const
css
::
uno
::
Exception
&
)
{
...
...
@@ -171,7 +171,7 @@ IMPL_LINK_NOARG(SdFileDialog_Imp, IsMusicStoppedHdl)
mxPlayer
->
getMediaTime
()
<
mxPlayer
->
getDuration
()
)
{
maUpdate
Timer
.
Start
();
maUpdate
Idle
.
Start
();
return
0L
;
}
...
...
@@ -224,7 +224,7 @@ SdFileDialog_Imp::SdFileDialog_Imp( const short nDialogType,
mbUsableSelection
(
bUsableSelection
),
mbLabelPlaying
(
false
)
{
maUpdate
Timer
.
SetTimeout
Hdl
(
LINK
(
this
,
SdFileDialog_Imp
,
IsMusicStoppedHdl
));
maUpdate
Idle
.
SetIdle
Hdl
(
LINK
(
this
,
SdFileDialog_Imp
,
IsMusicStoppedHdl
));
css
::
uno
::
Reference
<
::
com
::
sun
::
star
::
ui
::
dialogs
::
XFilePicker
>
xFileDlg
=
GetFilePicker
();
...
...
sd/source/ui/slidesorter/cache/SlsCacheCompactor.cxx
Dosyayı görüntüle @
d2b70197
...
...
@@ -127,7 +127,7 @@ CacheCompactor::CacheCompactor(
mnMaximalCacheSize
(
nMaximalCacheSize
),
mbIsCompactionRunning
(
false
)
{
maCompactionTimer
.
SetTimeout
(
100
/*ms*/
);
maCompactionTimer
.
SetTimeout
(
100
);
maCompactionTimer
.
SetTimeoutHdl
(
LINK
(
this
,
CacheCompactor
,
CompactionCallback
));
}
...
...
svtools/source/contnr/svimpbox.cxx
Dosyayı görüntüle @
d2b70197
...
...
@@ -89,8 +89,8 @@ SvImpLBox::SvImpLBox( SvTreeListBox* pLBView, SvTreeList* pLBTree, WinBits nWinS
nNodeBmpWidth
=
0
;
bAsyncBeginDrag
=
false
;
aAsyncBeginDrag
Idle
.
SetPriority
(
VCL_IDLE_PRIORITY_HIGHEST
);
aAsyncBeginDrag
Idle
.
SetIdle
Hdl
(
LINK
(
this
,
SvImpLBox
,
BeginDragHdl
));
aAsyncBeginDrag
Timer
.
SetTimeout
(
0
);
aAsyncBeginDrag
Timer
.
SetTimeout
Hdl
(
LINK
(
this
,
SvImpLBox
,
BeginDragHdl
));
// button animation in listbox
pActiveButton
=
0
;
pActiveEntry
=
0
;
...
...
@@ -2933,7 +2933,7 @@ void SvImpLBox::BeginDrag()
else
{
aAsyncBeginDragPos
=
aSelEng
.
GetMousePosPixel
();
aAsyncBeginDrag
Idle
.
Start
();
aAsyncBeginDrag
Timer
.
Start
();
}
}
...
...
svtools/source/inc/svimpbox.hxx
Dosyayı görüntüle @
d2b70197
...
...
@@ -125,7 +125,7 @@ private:
Size
aOutputSize
;
SelectionEngine
aSelEng
;
ImpLBSelEng
aFctSet
;
Idle
aAsyncBeginDragIdle
;
Timer
aAsyncBeginDragTimer
;
Point
aAsyncBeginDragPos
;
long
nYoffsNodeBmp
;
...
...
svx/source/inc/fmshimp.hxx
Dosyayı görüntüle @
d2b70197
...
...
@@ -155,7 +155,7 @@ class SVX_DLLPUBLIC FmXFormShell : public FmXFormShell_BASE
class
SuspendPropertyTracking
;
friend
class
SuspendPropertyTracking
;
//
Timer um verzoegerte Markierung vorzunehmen
//
timer for delayed mark
Timer
m_aMarkTimer
;
SdrObjArray
m_arrSearchedControls
;
// We enable a permanent cursor for the grid we found a searched text, it's disabled in the next "found" event.
...
...
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