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
e433ab14
Kaydet (Commit)
e433ab14
authored
Agu 03, 2012
tarafından
Rafael Dominguez
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unneeded attribute.
Change-Id: I41fcd5e07fa799f483f0c9eb007e8e6d8788eda1
üst
e93169a9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
7 deletions
+2
-7
thumbnailview.hxx
sfx2/inc/sfx2/thumbnailview.hxx
+0
-1
templatelocalview.cxx
sfx2/source/control/templatelocalview.cxx
+0
-2
templateonlineview.cxx
sfx2/source/control/templateonlineview.cxx
+0
-1
thumbnailview.cxx
sfx2/source/control/thumbnailview.cxx
+2
-3
No files found.
sfx2/inc/sfx2/thumbnailview.hxx
Dosyayı görüntüle @
e433ab14
...
...
@@ -354,7 +354,6 @@ protected:
bool
mbIsTransientChildrenDisabled
:
1
;
bool
mbHasVisibleItems
:
1
;
bool
mbSelectionMode
;
bool
mbActive
;
Color
maColor
;
Link
maItemStateHdl
;
...
...
sfx2/source/control/templatelocalview.cxx
Dosyayı görüntüle @
e433ab14
...
...
@@ -187,7 +187,6 @@ std::vector<rtl::OUString> TemplateLocalView::getFolderNames()
void
TemplateLocalView
::
showOverlay
(
bool
bVisible
)
{
mbActive
=
!
bVisible
;
mpItemView
->
Show
(
bVisible
);
// Clear items is the overlay is closed.
...
...
@@ -582,7 +581,6 @@ void TemplateLocalView::OnItemDblClicked (ThumbnailViewItem *pRegionItem)
if
(
meFilterOption
!=
FILTER_APP_NONE
)
mpItemView
->
filterItems
(
ViewFilter_Application
(
meFilterOption
));
mbActive
=
false
;
mpItemView
->
Show
();
}
...
...
sfx2/source/control/templateonlineview.cxx
Dosyayı görüntüle @
e433ab14
...
...
@@ -100,7 +100,6 @@ void TemplateOnlineView::filterTemplatesByApp(const FILTER_APPLICATION &eApp)
void
TemplateOnlineView
::
showOverlay
(
bool
bVisible
)
{
mbActive
=
!
bVisible
;
mpItemView
->
Show
(
bVisible
);
// Clear items is the overlay is closed.
...
...
sfx2/source/control/thumbnailview.cxx
Dosyayı görüntüle @
e433ab14
...
...
@@ -103,7 +103,6 @@ void ThumbnailView::ImplInit()
mbScroll
=
false
;
mbHasVisibleItems
=
false
;
mbSelectionMode
=
false
;
mbActive
=
true
;
maFilterFunc
=
ViewFilterAll
();
maColor
=
GetSettings
().
GetStyleSettings
().
GetDialogColor
();
...
...
@@ -196,7 +195,7 @@ void ThumbnailView::ImplInitScrollBar()
void
ThumbnailView
::
DrawItem
(
ThumbnailViewItem
*
pItem
)
{
if
(
mbActive
&&
pItem
->
isVisible
())
if
(
pItem
->
isVisible
())
{
Rectangle
aRect
=
pItem
->
getDrawArea
();
...
...
@@ -605,7 +604,7 @@ void ThumbnailView::MouseMove( const MouseEvent& rMEvt )
{
ThumbnailViewItem
*
pItem
=
ImplGetItem
(
ImplGetItem
(
rMEvt
.
GetPosPixel
()
)
);
if
(
pItem
&&
mbActive
)
if
(
pItem
)
{
if
(
mnHighItemId
!=
pItem
->
mnId
&&
pItem
->
isVisible
())
{
...
...
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