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
81e0c2c3
Kaydet (Commit)
81e0c2c3
authored
Agu 24, 2013
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WaE: OUString::valueOf in higher debug levels
Change-Id: I2aed7907c79905158714dc1b26ae1aefc1fcccc6
üst
d6985964
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
querycontroller.cxx
dbaccess/source/ui/querydesign/querycontroller.cxx
+1
-1
brwbox3.cxx
svtools/source/brwbox/brwbox3.cxx
+6
-6
OOXMLFastContextHandler.cxx
writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
+1
-1
No files found.
dbaccess/source/ui/querydesign/querycontroller.cxx
Dosyayı görüntüle @
81e0c2c3
...
@@ -148,7 +148,7 @@ namespace dbaui
...
@@ -148,7 +148,7 @@ namespace dbaui
if
(
!
_pNode
->
isToken
())
if
(
!
_pNode
->
isToken
())
{
{
// rule name as rule: ...
// rule name as rule: ...
rString
=
"RULE_ID: "
+
OUString
::
valueOf
(
(
sal_Int32
)
_pNode
->
getRuleID
()
)
+
rString
=
"RULE_ID: "
+
OUString
::
number
(
(
sal_Int32
)
_pNode
->
getRuleID
()
)
+
"("
+
OSQLParser
::
RuleIDToStr
(
_pNode
->
getRuleID
())
+
")"
;
"("
+
OSQLParser
::
RuleIDToStr
(
_pNode
->
getRuleID
())
+
")"
;
...
...
svtools/source/brwbox/brwbox3.cxx
Dosyayı görüntüle @
81e0c2c3
...
@@ -229,9 +229,9 @@ OUString BrowseBox::GetAccessibleObjectName( ::svt::AccessibleBrowseBoxObjType e
...
@@ -229,9 +229,9 @@ OUString BrowseBox::GetAccessibleObjectName( ::svt::AccessibleBrowseBoxObjType e
aRetText
=
OUString
(
"TableCell"
);
aRetText
=
OUString
(
"TableCell"
);
#if OSL_DEBUG_LEVEL > 1
#if OSL_DEBUG_LEVEL > 1
aRetText
+=
" ["
;
aRetText
+=
" ["
;
aRetText
+=
OUString
::
valueOf
(
sal_Int32
(
GetCurRow
()));
aRetText
+=
OUString
::
number
(
sal_Int32
(
GetCurRow
()));
aRetText
+=
","
;
aRetText
+=
","
;
aRetText
+=
OUString
::
valueOf
(
sal_Int32
(
GetCurColumnId
()));
aRetText
+=
OUString
::
number
(
sal_Int32
(
GetCurColumnId
()));
aRetText
+=
"]"
;
aRetText
+=
"]"
;
#endif
#endif
break
;
break
;
...
@@ -239,9 +239,9 @@ OUString BrowseBox::GetAccessibleObjectName( ::svt::AccessibleBrowseBoxObjType e
...
@@ -239,9 +239,9 @@ OUString BrowseBox::GetAccessibleObjectName( ::svt::AccessibleBrowseBoxObjType e
aRetText
=
OUString
(
"RowHeaderCell"
);
aRetText
=
OUString
(
"RowHeaderCell"
);
#if OSL_DEBUG_LEVEL > 1
#if OSL_DEBUG_LEVEL > 1
aRetText
+=
" ["
;
aRetText
+=
" ["
;
aRetText
+=
OUString
::
valueOf
(
sal_Int32
(
GetCurRow
()));
aRetText
+=
OUString
::
number
(
sal_Int32
(
GetCurRow
()));
aRetText
+=
","
;
aRetText
+=
","
;
aRetText
+=
OUString
::
valueOf
(
sal_Int32
(
GetCurColumnId
()));
aRetText
+=
OUString
::
number
(
sal_Int32
(
GetCurColumnId
()));
aRetText
+=
"]"
;
aRetText
+=
"]"
;
#endif
#endif
break
;
break
;
...
@@ -249,9 +249,9 @@ OUString BrowseBox::GetAccessibleObjectName( ::svt::AccessibleBrowseBoxObjType e
...
@@ -249,9 +249,9 @@ OUString BrowseBox::GetAccessibleObjectName( ::svt::AccessibleBrowseBoxObjType e
aRetText
=
OUString
(
"ColumnHeaderCell"
);
aRetText
=
OUString
(
"ColumnHeaderCell"
);
#if OSL_DEBUG_LEVEL > 1
#if OSL_DEBUG_LEVEL > 1
aRetText
+=
" ["
;
aRetText
+=
" ["
;
aRetText
+=
OUString
::
valueOf
(
sal_Int32
(
GetCurRow
()));
aRetText
+=
OUString
::
number
(
sal_Int32
(
GetCurRow
()));
aRetText
+=
","
;
aRetText
+=
","
;
aRetText
+=
OUString
::
valueOf
(
sal_Int32
(
GetCurColumnId
()));
aRetText
+=
OUString
::
number
(
sal_Int32
(
GetCurColumnId
()));
aRetText
+=
"]"
;
aRetText
+=
"]"
;
#endif
#endif
break
;
break
;
...
...
writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
Dosyayı görüntüle @
81e0c2c3
...
@@ -281,7 +281,7 @@ uno::Reference< xml::sax::XFastContextHandler > SAL_CALL
...
@@ -281,7 +281,7 @@ uno::Reference< xml::sax::XFastContextHandler > SAL_CALL
debug_logger
->
startElement
(
"contexthandler.createFastChildContext"
);
debug_logger
->
startElement
(
"contexthandler.createFastChildContext"
);
debug_logger
->
attribute
(
"token"
,
fastTokenToId
(
Element
));
debug_logger
->
attribute
(
"token"
,
fastTokenToId
(
Element
));
debug_logger
->
attribute
(
"type"
,
getType
());
debug_logger
->
attribute
(
"type"
,
getType
());
debug_logger
->
attribute
(
"discard-children"
,
OUString
::
valueOf
(
m_bDiscardChildren
));
debug_logger
->
attribute
(
"discard-children"
,
OUString
::
number
(
m_bDiscardChildren
));
#endif
#endif
uno
::
Reference
<
xml
::
sax
::
XFastContextHandler
>
xResult
;
uno
::
Reference
<
xml
::
sax
::
XFastContextHandler
>
xResult
;
...
...
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