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
a96f593b
Kaydet (Commit)
a96f593b
authored
Haz 04, 2013
tarafından
Fridrich Štrba
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some more sal_IntPtr dance, but enough for today
Change-Id: Ic772181321e74713244223cc3d4542bd4cd2dc88
üst
424e936f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
20 deletions
+14
-20
svdde.hxx
include/svl/svdde.hxx
+1
-1
region.hxx
include/vcl/region.hxx
+1
-1
sehandler.hxx
include/wntgcci/sehandler.hxx
+2
-2
ddecli.cxx
svl/source/svdde/ddecli.cxx
+2
-2
ddesvr.cxx
svl/source/svdde/ddesvr.cxx
+6
-12
wincomp.hxx
vcl/inc/win/wincomp.hxx
+1
-1
printdlg.cxx
vcl/source/window/printdlg.cxx
+1
-1
No files found.
include/svl/svdde.hxx
Dosyayı görüntüle @
a96f593b
...
...
@@ -220,7 +220,7 @@ public:
~
DdeConnection
();
long
GetError
();
long
GetConvId
();
sal_IntPtr
GetConvId
();
static
const
std
::
vector
<
DdeConnection
*>&
GetConnections
();
...
...
include/vcl/region.hxx
Dosyayı görüntüle @
a96f593b
...
...
@@ -39,7 +39,7 @@ struct ImplRegionInfo;
enum
RegionType
{
REGION_NULL
,
REGION_EMPTY
,
REGION_RECTANGLE
,
REGION_COMPLEX
};
enum
RegionOverlapType
{
REGION_INSIDE
,
REGION_OVER
,
REGION_OUTSIDE
};
typedef
long
RegionHandle
;
typedef
sal_IntPtr
RegionHandle
;
// ----------
// - Region -
...
...
include/wntgcci/sehandler.hxx
Dosyayı görüntüle @
a96f593b
...
...
@@ -7,8 +7,8 @@
#ifndef _SEHANDLER_HXX
#define _SEHANDLER_HXX
#if
ndef __MINGW32__
#error This file should be included only in a MinGW compilation
#if
!defined( __MINGW32__ ) || defined ( _WIN64 )
#error This file should be included only in a
32-bit
MinGW compilation
#endif
#include <windows.h>
...
...
svl/source/svdde/ddecli.cxx
Dosyayı görüntüle @
a96f593b
...
...
@@ -243,9 +243,9 @@ const String& DdeConnection::GetTopicName()
// --- DdeConnection::GetConvId() ----------------------------------
long
DdeConnection
::
GetConvId
()
sal_IntPtr
DdeConnection
::
GetConvId
()
{
return
(
long
)
pImp
->
hConv
;
return
(
sal_IntPtr
)
pImp
->
hConv
;
}
const
std
::
vector
<
DdeConnection
*>&
DdeConnection
::
GetConnections
()
...
...
svl/source/svdde/ddesvr.cxx
Dosyayı görüntüle @
a96f593b
...
...
@@ -45,12 +45,7 @@ class DdeItemImp : public std::vector<DdeItemImpData> {};
// --- DdeInternat::SvrCallback() ----------------------------------
#ifdef WNT
HDDEDATA
CALLBACK
DdeInternal
::
SvrCallback
(
WORD
nCode
,
WORD
nCbType
,
HCONV
hConv
,
HSZ
hText1
,
HSZ
hText2
,
HDDEDATA
hData
,
DWORD
,
DWORD
)
#else
#if defined( ICC )
#if defined( WNT ) || defined( ICC )
HDDEDATA
CALLBACK
DdeInternal
::
SvrCallback
(
WORD
nCode
,
WORD
nCbType
,
HCONV
hConv
,
HSZ
hText1
,
HSZ
hText2
,
HDDEDATA
hData
,
DWORD
,
DWORD
)
...
...
@@ -59,7 +54,6 @@ HDDEDATA CALLBACK _export DdeInternal::SvrCallback(
WORD
nCode
,
WORD
nCbType
,
HCONV
hConv
,
HSZ
hText1
,
HSZ
hText2
,
HDDEDATA
hData
,
DWORD
,
DWORD
)
#endif
#endif
{
DdeServices
&
rAll
=
DdeService
::
GetServices
();
DdeService
*
pService
;
...
...
@@ -169,7 +163,7 @@ HDDEDATA CALLBACK _export DdeInternal::SvrCallback(
pTopic
=
FindTopic
(
*
pService
,
hText1
);
if
(
pTopic
)
{
pTopic
->
Connect
(
(
long
)
hConv
);
pTopic
->
Connect
(
(
sal_IntPtr
)
hConv
);
pC
=
new
Conversation
;
pC
->
hConv
=
hConv
;
pC
->
pTopic
=
pTopic
;
...
...
@@ -195,7 +189,7 @@ HDDEDATA CALLBACK _export DdeInternal::SvrCallback(
found
:
if
(
nCode
==
XTYP_DISCONNECT
)
{
pC
->
pTopic
->
_Disconnect
(
(
long
)
hConv
);
pC
->
pTopic
->
_Disconnect
(
(
sal_IntPtr
)
hConv
);
for
(
ConvList
::
iterator
it
=
pService
->
pConv
->
begin
();
it
!=
pService
->
pConv
->
end
();
++
it
...
...
@@ -227,7 +221,7 @@ found:
pTopic
->
aItem
=
OUString
();
sal_Bool
bRes
=
sal_False
;
pInst
->
hCurConvSvr
=
(
long
)
hConv
;
pInst
->
hCurConvSvr
=
(
sal_IntPtr
)
hConv
;
switch
(
nCode
)
{
case
XTYP_REQUEST
:
...
...
@@ -324,14 +318,14 @@ found:
if
(
pItem
)
{
pItem
->
IncMonitor
(
(
long
)
hConv
);
pItem
->
IncMonitor
(
(
sal_IntPtr
)
hConv
);
pInst
->
hCurConvSvr
=
0
;
}
}
return
(
HDDEDATA
)
sal_True
;
case
XTYP_ADVSTOP
:
pItem
->
DecMonitor
(
(
long
)
hConv
);
pItem
->
DecMonitor
(
(
sal_IntPtr
)
hConv
);
if
(
!
pItem
->
pImpData
)
pTopic
->
StopAdviseLoop
();
pInst
->
hCurConvSvr
=
0
;
...
...
vcl/inc/win/wincomp.hxx
Dosyayı görüntüle @
a96f593b
...
...
@@ -135,7 +135,7 @@ inline void SetWindowFont( HWND hWnd, HFONT hFont, BOOL bRedraw )
inline
HFONT
GetWindowFont
(
HWND
hWnd
)
{
return
(
HFONT
)
(
UINT
)
SendMessage
(
hWnd
,
WM_GETFONT
,
0
,
0
);
return
(
HFONT
)
SendMessage
(
hWnd
,
WM_GETFONT
,
0
,
0
);
}
inline
void
SetClassCursor
(
HWND
hWnd
,
HCURSOR
hCursor
)
...
...
vcl/source/window/printdlg.cxx
Dosyayı görüntüle @
a96f593b
...
...
@@ -1336,7 +1336,7 @@ Size PrintDialog::getJobPageSize()
void
PrintDialog
::
updateNupFromPages
()
{
long
nPages
=
long
(
maNUpPage
.
mpNupPagesBox
->
GetEntryData
(
maNUpPage
.
mpNupPagesBox
->
GetSelectEntryPos
()));
sal_IntPtr
nPages
=
sal_IntPtr
(
maNUpPage
.
mpNupPagesBox
->
GetEntryData
(
maNUpPage
.
mpNupPagesBox
->
GetSelectEntryPos
()));
int
nRows
=
int
(
maNUpPage
.
mpNupRowsEdt
->
GetValue
());
int
nCols
=
int
(
maNUpPage
.
mpNupColEdt
->
GetValue
());
long
nPageMargin
=
long
(
maNUpPage
.
mpPageMarginEdt
->
Denormalize
(
maNUpPage
.
mpPageMarginEdt
->
GetValue
(
FUNIT_100TH_MM
)));
...
...
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