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
deca1830
Kaydet (Commit)
deca1830
authored
May 08, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:staticmethods
Change-Id: I186c81923857d06ac7a87caf9d5961f44b89b559
üst
8d66fe43
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
DropTarget.cxx
vcl/osx/DropTarget.cxx
+3
-2
DropTarget.hxx
vcl/osx/DropTarget.hxx
+1
-1
No files found.
vcl/osx/DropTarget.cxx
Dosyayı görüntüle @
deca1830
...
...
@@ -99,7 +99,8 @@ namespace /* private */
-
(
BOOL
)
prepareForDragOperation
:
(
id
<
NSDraggingInfo
>
)
sender
{
return
mDropTarget
->
prepareForDragOperation
(
sender
);
(
void
)
sender
;
return
DropTarget
::
prepareForDragOperation
();
}
-
(
BOOL
)
performDragOperation
:
(
id
<
NSDraggingInfo
>
)
sender
...
...
@@ -282,7 +283,7 @@ void DropTarget::draggingExited(id /*sender*/)
[[
NSCursor
arrowCursor
]
set
];
}
BOOL
DropTarget
::
prepareForDragOperation
(
id
/*sender*/
)
BOOL
DropTarget
::
prepareForDragOperation
()
{
return
1
;
}
...
...
vcl/osx/DropTarget.hxx
Dosyayı görüntüle @
deca1830
...
...
@@ -124,7 +124,7 @@ public:
NSDragOperation
draggingEntered
(
id
sender
);
NSDragOperation
draggingUpdated
(
id
sender
);
void
draggingExited
(
id
sender
);
BOOL
prepareForDragOperation
(
id
sender
);
static
BOOL
prepareForDragOperation
(
);
BOOL
performDragOperation
(
id
sender
);
void
concludeDragOperation
(
id
sender
);
...
...
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