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
78738781
Kaydet (Commit)
78738781
authored
Şub 27, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Avoid unnecessary bad downcast
Change-Id: Ib7ed62599b9e088c4a91a39c3181f3a13e641d70
üst
05caf43f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
svimpbox.cxx
svtools/source/contnr/svimpbox.cxx
+2
-2
No files found.
svtools/source/contnr/svimpbox.cxx
Dosyayı görüntüle @
78738781
...
...
@@ -3192,7 +3192,7 @@ bool SvImpLBox::RequestHelp( const HelpEvent& rHEvt )
{
// recalculate text rectangle
SvLBoxTab
*
pTab
;
SvLBox
String
*
pItem
=
static_cast
<
SvLBoxString
*>
(
pView
->
GetItem
(
pEntry
,
aPos
.
X
(),
&
pTab
)
);
SvLBox
Item
*
pItem
=
pView
->
GetItem
(
pEntry
,
aPos
.
X
(),
&
pTab
);
if
(
!
pItem
||
pItem
->
GetType
()
!=
SV_ITEM_ID_LBOXSTRING
)
return
false
;
...
...
@@ -3225,7 +3225,7 @@ bool SvImpLBox::RequestHelp( const HelpEvent& rHEvt )
aItemRect
.
Bottom
()
=
aPt
.
Y
();
Help
::
ShowQuickHelp
(
pView
,
aItemRect
,
pItem
->
GetText
(),
QUICKHELP_LEFT
|
QUICKHELP_VCENTER
);
static_cast
<
SvLBoxString
*>
(
pItem
)
->
GetText
(),
QUICKHELP_LEFT
|
QUICKHELP_VCENTER
);
return
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