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
90e16066
Kaydet (Commit)
90e16066
authored
Haz 10, 2013
tarafından
Fridrich Štrba
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
mingw64: long -> sal_IntPtr in dbaccess
Change-Id: Ic9e049b6b79a8ae3777d8b2a6e918289445c21da
üst
7c2c4895
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
ConnectionHelper.cxx
dbaccess/source/ui/dlg/ConnectionHelper.cxx
+1
-1
querydlg.cxx
dbaccess/source/ui/querydesign/querydlg.cxx
+4
-4
No files found.
dbaccess/source/ui/dlg/ConnectionHelper.cxx
Dosyayı görüntüle @
90e16066
...
...
@@ -272,7 +272,7 @@ DBG_NAME(OConnectionHelper)
OUString
sOldDataSource
=
getURLNoPrefix
();
OUString
sNewDataSource
;
HWND
hWnd
=
GetParent
()
->
GetSystemData
()
->
hWnd
;
sNewDataSource
=
getAdoDatalink
((
long
)
hWnd
,
sOldDataSource
);
sNewDataSource
=
getAdoDatalink
((
LONG_PTR
)
hWnd
,
sOldDataSource
);
if
(
!
sNewDataSource
.
isEmpty
()
)
{
setURLNoPrefix
(
sNewDataSource
);
...
...
dbaccess/source/ui/querydesign/querydlg.cxx
Dosyayı görüntüle @
90e16066
...
...
@@ -146,7 +146,7 @@ DlgQryJoin::DlgQryJoin( OQueryTableView * pParent,
const
sal_uInt16
nCount
=
m_pJoinControl
->
aLB_JoinType
.
GetEntryCount
();
for
(
sal_uInt16
i
=
0
;
i
<
nCount
;
++
i
)
{
const
long
nJoinTyp
=
reinterpret_cast
<
long
>
(
m_pJoinControl
->
aLB_JoinType
.
GetEntryData
(
i
));
const
sal_IntPtr
nJoinTyp
=
reinterpret_cast
<
sal_IntPtr
>
(
m_pJoinControl
->
aLB_JoinType
.
GetEntryData
(
i
));
if
(
!
bSupportFullJoin
&&
nJoinTyp
==
ID_FULL_JOIN
)
m_pJoinControl
->
aLB_JoinType
.
RemoveEntry
(
i
);
else
if
(
!
bSupportOuterJoin
&&
(
nJoinTyp
==
ID_LEFT_JOIN
||
nJoinTyp
==
ID_RIGHT_JOIN
)
)
...
...
@@ -184,7 +184,7 @@ IMPL_LINK( DlgQryJoin, LBChangeHdl, ListBox*, /*pListBox*/ )
const
EJoinType
eOldJoinType
=
eJoinType
;
sal_uInt16
nResId
=
0
;
const
sal_uInt16
nPos
=
m_pJoinControl
->
aLB_JoinType
.
GetSelectEntryPos
();
const
long
nJoinType
=
reinterpret_cast
<
long
>
(
m_pJoinControl
->
aLB_JoinType
.
GetEntryData
(
nPos
));
const
sal_IntPtr
nJoinType
=
reinterpret_cast
<
sal_IntPtr
>
(
m_pJoinControl
->
aLB_JoinType
.
GetEntryData
(
nPos
));
sal_Bool
bAddHint
=
sal_True
;
switch
(
nJoinType
)
{
...
...
@@ -324,7 +324,7 @@ void DlgQryJoin::setJoinType(EJoinType _eNewJoinType)
eJoinType
=
_eNewJoinType
;
m_pJoinControl
->
m_aCBNatural
.
Enable
(
eJoinType
!=
CROSS_JOIN
);
long
nJoinType
=
0
;
sal_IntPtr
nJoinType
=
0
;
switch
(
eJoinType
)
{
default
:
...
...
@@ -348,7 +348,7 @@ void DlgQryJoin::setJoinType(EJoinType _eNewJoinType)
const
sal_uInt16
nCount
=
m_pJoinControl
->
aLB_JoinType
.
GetEntryCount
();
for
(
sal_uInt16
i
=
0
;
i
<
nCount
;
++
i
)
{
if
(
nJoinType
==
reinterpret_cast
<
long
>
(
m_pJoinControl
->
aLB_JoinType
.
GetEntryData
(
i
))
)
if
(
nJoinType
==
reinterpret_cast
<
sal_IntPtr
>
(
m_pJoinControl
->
aLB_JoinType
.
GetEntryData
(
i
))
)
{
m_pJoinControl
->
aLB_JoinType
.
SelectEntryPos
(
i
);
break
;
...
...
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