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
a762204a
Kaydet (Commit)
a762204a
authored
Eyl 17, 2014
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Typos
Change-Id: Icf850c4b7b146a82a5638a3cd88ad02f3171aff3
üst
9acf9b65
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
12 deletions
+12
-12
RowSet.java
dbaccess/qa/complex/dbaccess/RowSet.java
+1
-1
CacheSet.cxx
dbaccess/source/core/api/CacheSet.cxx
+1
-1
KeySet.cxx
dbaccess/source/core/api/KeySet.cxx
+5
-5
OptimisticSet.cxx
dbaccess/source/core/api/OptimisticSet.cxx
+1
-1
viewsh.cxx
sfx2/source/view/viewsh.cxx
+2
-2
anchoreddrawobject.hxx
sw/inc/anchoreddrawobject.hxx
+1
-1
txtfly.cxx
sw/source/core/text/txtfly.cxx
+1
-1
No files found.
dbaccess/qa/complex/dbaccess/RowSet.java
Dosyayı görüntüle @
a762204a
...
@@ -200,7 +200,7 @@ public class RowSet extends TestCase
...
@@ -200,7 +200,7 @@ public class RowSet extends TestCase
System
.
out
.
println
(
"testing testRowSet"
);
System
.
out
.
println
(
"testing testRowSet"
);
createTestCase
(
true
);
createTestCase
(
true
);
// sequential postioning
// sequential pos
i
tioning
m_resultSet
.
beforeFirst
();
m_resultSet
.
beforeFirst
();
testSequentialPositining
(
m_resultSet
,
m_row
);
testSequentialPositining
(
m_resultSet
,
m_row
);
...
...
dbaccess/source/core/api/CacheSet.cxx
Dosyayı görüntüle @
a762204a
...
@@ -282,7 +282,7 @@ void SAL_CALL OCacheSet::updateRow(const ORowSetRow& _rInsertRow ,const ORowSetR
...
@@ -282,7 +282,7 @@ void SAL_CALL OCacheSet::updateRow(const ORowSetRow& _rInsertRow ,const ORowSetR
fillTableName
(
xSet
);
fillTableName
(
xSet
);
OUStringBuffer
aSql
(
"UPDATE "
+
m_aComposedTableName
+
" SET "
);
OUStringBuffer
aSql
(
"UPDATE "
+
m_aComposedTableName
+
" SET "
);
// list all c
lo
umns that should be set
// list all c
ol
umns that should be set
OUStringBuffer
aCondition
;
OUStringBuffer
aCondition
;
::
std
::
list
<
sal_Int32
>
aOrgValues
;
::
std
::
list
<
sal_Int32
>
aOrgValues
;
...
...
dbaccess/source/core/api/KeySet.cxx
Dosyayı görüntüle @
a762204a
...
@@ -562,14 +562,14 @@ void SAL_CALL OKeySet::updateRow(const ORowSetRow& _rInsertRow ,const ORowSetRow
...
@@ -562,14 +562,14 @@ void SAL_CALL OKeySet::updateRow(const ORowSetRow& _rInsertRow ,const ORowSetRow
fillTableName
(
xSet
);
fillTableName
(
xSet
);
OUStringBuffer
aSql
=
"UPDATE "
+
m_aComposedTableName
+
" SET "
;
OUStringBuffer
aSql
=
"UPDATE "
+
m_aComposedTableName
+
" SET "
;
// list all c
lo
umns that should be set
// list all c
ol
umns that should be set
static
OUString
aPara
(
" = ?,"
);
static
OUString
aPara
(
" = ?,"
);
OUString
aQuote
=
getIdentifierQuoteString
();
OUString
aQuote
=
getIdentifierQuoteString
();
static
OUString
aAnd
(
" AND "
);
static
OUString
aAnd
(
" AND "
);
OUString
sIsNull
(
" IS NULL"
);
OUString
sIsNull
(
" IS NULL"
);
OUString
sParam
(
" = ?"
);
OUString
sParam
(
" = ?"
);
// use keys and indexes for exact postioning
// use keys and indexes for exact pos
i
tioning
// first the keys
// first the keys
Reference
<
XNameAccess
>
xKeyColumns
=
getKeyColumns
();
Reference
<
XNameAccess
>
xKeyColumns
=
getKeyColumns
();
...
@@ -972,11 +972,11 @@ void SAL_CALL OKeySet::deleteRow(const ORowSetRow& _rDeleteRow,const connectivit
...
@@ -972,11 +972,11 @@ void SAL_CALL OKeySet::deleteRow(const ORowSetRow& _rDeleteRow,const connectivit
OUStringBuffer
aSql
(
"DELETE FROM "
+
m_aComposedTableName
+
" WHERE "
);
OUStringBuffer
aSql
(
"DELETE FROM "
+
m_aComposedTableName
+
" WHERE "
);
// list all c
lo
umns that should be set
// list all c
ol
umns that should be set
OUString
aQuote
=
getIdentifierQuoteString
();
OUString
aQuote
=
getIdentifierQuoteString
();
static
OUString
aAnd
(
" AND "
);
static
OUString
aAnd
(
" AND "
);
// use keys and indexes for ex
cat pos
tioning
// use keys and indexes for ex
act posi
tioning
Reference
<
XNameAccess
>
xKeyColumns
=
getKeyColumns
();
Reference
<
XNameAccess
>
xKeyColumns
=
getKeyColumns
();
// second the indexes
// second the indexes
Reference
<
XIndexesSupplier
>
xIndexSup
(
_xTable
,
UNO_QUERY
);
Reference
<
XIndexesSupplier
>
xIndexSup
(
_xTable
,
UNO_QUERY
);
...
@@ -1082,7 +1082,7 @@ void SAL_CALL OKeySet::moveToCurrentRow( ) throw(SQLException, RuntimeException
...
@@ -1082,7 +1082,7 @@ void SAL_CALL OKeySet::moveToCurrentRow( ) throw(SQLException, RuntimeException
Reference
<
XNameAccess
>
OKeySet
::
getKeyColumns
()
const
Reference
<
XNameAccess
>
OKeySet
::
getKeyColumns
()
const
{
{
// use keys and indexes for exact postioning
// use keys and indexes for exact pos
i
tioning
// first the keys
// first the keys
Reference
<
XIndexAccess
>
xKeys
=
m_xTableKeys
;
Reference
<
XIndexAccess
>
xKeys
=
m_xTableKeys
;
...
...
dbaccess/source/core/api/OptimisticSet.cxx
Dosyayı görüntüle @
a762204a
...
@@ -182,7 +182,7 @@ void SAL_CALL OptimisticSet::updateRow(const ORowSetRow& _rInsertRow ,const ORow
...
@@ -182,7 +182,7 @@ void SAL_CALL OptimisticSet::updateRow(const ORowSetRow& _rInsertRow ,const ORow
{
{
if
(
m_aJoinedKeyColumns
.
empty
()
)
if
(
m_aJoinedKeyColumns
.
empty
()
)
throw
SQLException
();
throw
SQLException
();
// list all c
lo
umns that should be set
// list all c
ol
umns that should be set
static
OUString
s_sPara
(
" = ?"
);
static
OUString
s_sPara
(
" = ?"
);
OUString
aQuote
=
getIdentifierQuoteString
();
OUString
aQuote
=
getIdentifierQuoteString
();
...
...
sfx2/source/view/viewsh.cxx
Dosyayı görüntüle @
a762204a
...
@@ -1052,7 +1052,7 @@ void SfxViewShell::OuterResizePixel
...
@@ -1052,7 +1052,7 @@ void SfxViewShell::OuterResizePixel
here. The mainuse is to change the size of the Vis-Area.
here. The mainuse is to change the size of the Vis-Area.
If the Border is changed due to the new calculation then this has to be set
If the Border is changed due to the new calculation then this has to be set
by <SfxViewShell::SetBorderPixel(const SvBorder&)>. The Postioning of Tools
by <SfxViewShell::SetBorderPixel(const SvBorder&)>. The Pos
i
tioning of Tools
is only allowed after the calling of 'SetBorderPixel'.
is only allowed after the calling of 'SetBorderPixel'.
[Example]
[Example]
...
@@ -1101,7 +1101,7 @@ void SfxViewShell::InnerResizePixel
...
@@ -1101,7 +1101,7 @@ void SfxViewShell::InnerResizePixel
If the Border is changed due to the new calculation then is has to be set
If the Border is changed due to the new calculation then is has to be set
by <SfxViewShell::SetBorderPixel(const SvBorder&)>.
by <SfxViewShell::SetBorderPixel(const SvBorder&)>.
The Postioning of Tools is only allowed after the calling of
The Pos
i
tioning of Tools is only allowed after the calling of
'SetBorderPixel'.
'SetBorderPixel'.
...
...
sw/inc/anchoreddrawobject.hxx
Dosyayı görüntüle @
a762204a
...
@@ -34,7 +34,7 @@ class SW_DLLPUBLIC SwAnchoredDrawObject : public SwAnchoredObject
...
@@ -34,7 +34,7 @@ class SW_DLLPUBLIC SwAnchoredDrawObject : public SwAnchoredObject
// and that a positioning has to be performed.
// and that a positioning has to be performed.
bool
mbValidPos
;
bool
mbValidPos
;
// rectangle, keeping the last object rectangle after the postioning
// rectangle, keeping the last object rectangle after the pos
i
tioning
Rectangle
*
mpLastObjRect
;
Rectangle
*
mpLastObjRect
;
// boolean, indicating that anchored drawing object hasn't been attached
// boolean, indicating that anchored drawing object hasn't been attached
...
...
sw/source/core/text/txtfly.cxx
Dosyayı görüntüle @
a762204a
...
@@ -810,7 +810,7 @@ bool SwTxtFly::GetTop( const SwAnchoredObject* _pAnchoredObj,
...
@@ -810,7 +810,7 @@ bool SwTxtFly::GetTop( const SwAnchoredObject* _pAnchoredObj,
// if wrapping style is considered on object positioning.
// if wrapping style is considered on object positioning.
// Thus, text will wrap around negative positioned objects.
// Thus, text will wrap around negative positioned objects.
// #i3317# - remove condition on checking,
// #i3317# - remove condition on checking,
// if wrappings style is considered on object postioning.
// if wrappings style is considered on object pos
i
tioning.
// Thus, text is wrapping around negative positioned objects.
// Thus, text is wrapping around negative positioned objects.
// #i35640# - no consideration of negative
// #i35640# - no consideration of negative
// positioned objects, if wrapping style isn't considered on
// positioned objects, if wrapping style isn't considered on
...
...
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