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
d1577ee1
Kaydet (Commit)
d1577ee1
authored
Ara 10, 2014
tarafından
Tobias Madl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
priorities: prevent future compatibility problems
Change-Id: I735bac570a0bed35d9ddc07e5f107fb696b49082
üst
861e7853
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
10 deletions
+16
-10
ShellStackGuard.cxx
sd/source/ui/framework/module/ShellStackGuard.cxx
+3
-3
ShellStackGuard.hxx
sd/source/ui/framework/module/ShellStackGuard.hxx
+1
-1
newhelp.cxx
sfx2/source/appl/newhelp.cxx
+10
-5
newhelp.hxx
sfx2/source/appl/newhelp.hxx
+2
-1
No files found.
sd/source/ui/framework/module/ShellStackGuard.cxx
Dosyayı görüntüle @
d1577ee1
...
...
@@ -118,12 +118,12 @@ void SAL_CALL ShellStackGuard::disposing (
}
}
IMPL_LINK
(
ShellStackGuard
,
TimeoutHandler
,
Timer
*
,
pTimer
)
IMPL_LINK
(
ShellStackGuard
,
TimeoutHandler
,
Idle
*
,
pIdle
)
{
#ifdef DEBUG
OSL_ASSERT
(
p
Timer
==&
maPrinterPollingIdle
);
OSL_ASSERT
(
p
Idle
==&
maPrinterPollingIdle
);
#else
(
void
)
p
Timer
;
(
void
)
p
Idle
;
#endif
if
(
mpUpdateLock
.
get
()
!=
NULL
)
{
...
...
sd/source/ui/framework/module/ShellStackGuard.hxx
Dosyayı görüntüle @
d1577ee1
...
...
@@ -86,7 +86,7 @@ private:
::
boost
::
scoped_ptr
<
ConfigurationController
::
Lock
>
mpUpdateLock
;
Idle
maPrinterPollingIdle
;
DECL_LINK
(
TimeoutHandler
,
Timer
*
);
DECL_LINK
(
TimeoutHandler
,
Idle
*
);
/** Return <TRUE/> when the printer is printing. Return <FALSE/> when
the printer is not printing, or there is no printer, or something
...
...
sfx2/source/appl/newhelp.cxx
Dosyayı görüntüle @
d1577ee1
...
...
@@ -538,7 +538,7 @@ IndexTabPage_Impl::IndexTabPage_Impl(vcl::Window* pParent, SfxHelpIndexWindow_Im
m_pOpenBtn
->
SetClickHdl
(
LINK
(
this
,
IndexTabPage_Impl
,
OpenHdl
)
);
Link
aTimeoutLink
=
LINK
(
this
,
IndexTabPage_Impl
,
TimeoutHdl
);
aFactoryIdle
.
SetIdleHdl
(
aTimeoutLink
);
aFactoryIdle
.
SetIdleHdl
(
LINK
(
this
,
IndexTabPage_Impl
,
IdleHdl
)
);
aFactoryIdle
.
SetPriority
(
VCL_IDLE_PRIORITY_LOWER
);
aKeywordTimer
.
SetTimeoutHdl
(
aTimeoutLink
);
}
...
...
@@ -708,12 +708,17 @@ IMPL_LINK_NOARG(IndexTabPage_Impl, OpenHdl)
return
0
;
}
IMPL_LINK
(
IndexTabPage_Impl
,
TimeoutHdl
,
Timer
*
,
pTimer
)
IMPL_LINK
(
IndexTabPage_Impl
,
IdleHdl
,
Idle
*
,
pIdle
)
{
if
(
&
aFactoryIdle
==
p
Timer
)
if
(
&
aFactoryIdle
==
p
Idle
)
InitializeIndex
();
else
if
(
&
aKeywordTimer
==
pTimer
&&
!
sKeyword
.
isEmpty
()
)
aKeywordLink
.
Call
(
this
);
return
0
;
}
IMPL_LINK
(
IndexTabPage_Impl
,
TimeoutHdl
,
Timer
*
,
pTimer
)
{
if
(
&
aKeywordTimer
==
pTimer
&&
!
sKeyword
.
isEmpty
())
aKeywordLink
.
Call
(
this
);
return
0
;
}
...
...
sfx2/source/appl/newhelp.hxx
Dosyayı görüntüle @
d1577ee1
...
...
@@ -134,7 +134,8 @@ private:
void
ClearIndex
();
DECL_LINK
(
OpenHdl
,
void
*
);
DECL_LINK
(
TimeoutHdl
,
Timer
*
);
DECL_LINK
(
IdleHdl
,
Idle
*
);
DECL_LINK
(
TimeoutHdl
,
Timer
*
);
public
:
IndexTabPage_Impl
(
vcl
::
Window
*
pParent
,
SfxHelpIndexWindow_Impl
*
_pIdxWin
);
...
...
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