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
956c775c
Kaydet (Commit)
956c775c
authored
Haz 10, 2013
tarafından
Fridrich Štrba
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
mingw64: Don't cast from MAKELONG to pointer directly
Change-Id: Ia0ff071a5676f27d39175e30d7c5f472e32c99b3
üst
008147e8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
10 deletions
+4
-10
PreviewCtrl.cxx
fpicker/source/win32/filepicker/PreviewCtrl.cxx
+1
-1
dibpreview.cxx
fpicker/source/win32/filepicker/dibpreview.cxx
+1
-7
helppopupwindow.cxx
fpicker/source/win32/filepicker/helppopupwindow.cxx
+1
-1
MtaFop.cxx
fpicker/source/win32/folderpicker/MtaFop.cxx
+1
-1
No files found.
fpicker/source/win32/filepicker/PreviewCtrl.cxx
Dosyayı görüntüle @
956c775c
...
...
@@ -280,7 +280,7 @@ CFilePreview::~CFilePreview( )
{
// unregister preview window class
sal_Bool
bRet
=
UnregisterClass
(
(
LPCTSTR
)
MAKELONG
(
m_atomPrevWndClass
,
0
),
(
LPCTSTR
)
(
DWORD_PTR
)
MAKELONG
(
m_atomPrevWndClass
,
0
),
m_hInstance
);
OSL_POSTCOND
(
bRet
,
"Unregister preview window class failed"
);
}
...
...
fpicker/source/win32/filepicker/dibpreview.cxx
Dosyayı görüntüle @
956c775c
...
...
@@ -48,12 +48,6 @@ namespace /* private */
#define PREVIEWWND_CLASS_NAME TEXT("DIBPreviewWnd###")
// means 3 pixel left and 3 pixel right
#define HORZ_BODER_SPACE 6
// means 3 pixel top and 3 pixel bottom
#define VERT_BORDER_SPACE 6
//---------------------------------------------------
// static member initialization
//---------------------------------------------------
...
...
@@ -445,7 +439,7 @@ void SAL_CALL CDIBPreview::UnregisterDibPreviewWindowClass()
if
(
0
==
s_RegisterDibPreviewWndCount
)
{
UnregisterClass
((
LPCTSTR
)
MAKELONG
(
s_ClassAtom
,
0
),
m_Instance
);
UnregisterClass
((
LPCTSTR
)
(
DWORD_PTR
)
MAKELONG
(
s_ClassAtom
,
0
),
m_Instance
);
s_ClassAtom
=
0
;
}
}
...
...
fpicker/source/win32/filepicker/helppopupwindow.cxx
Dosyayı görüntüle @
956c775c
...
...
@@ -585,7 +585,7 @@ void SAL_CALL CHelpPopupWindow::UnregisterWindowClass( )
if
(
0
==
s_RegisterWndClassCount
)
{
if
(
!
UnregisterClass
(
(
LPCTSTR
)
MAKELONG
(
s_ClassAtom
,
0
),
m_hInstance
)
)
(
LPCTSTR
)
(
DWORD_PTR
)
MAKELONG
(
s_ClassAtom
,
0
),
m_hInstance
)
)
{
OSL_FAIL
(
"unregister window class failed"
);
}
...
...
fpicker/source/win32/folderpicker/MtaFop.cxx
Dosyayı görüntüle @
956c775c
...
...
@@ -815,7 +815,7 @@ void SAL_CALL CMtaFolderPicker::UnregisterStaRequestWindowClass( )
if
(
0
==
s_StaRequestWndRegisterCount
)
{
UnregisterClass
(
(
LPCTSTR
)
MAKELONG
(
s_ClassAtom
,
0
),
m_hInstance
);
(
LPCTSTR
)
(
DWORD_PTR
)
MAKELONG
(
s_ClassAtom
,
0
),
m_hInstance
);
s_ClassAtom
=
0
;
}
...
...
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