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
ae71f5b4
Kaydet (Commit)
ae71f5b4
authored
Ock 11, 2012
tarafından
Marcel Metz
Kaydeden (comit)
David Tardon
Ock 16, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replaced DBG_ERRORFILE with SAL_INFO.
üst
157d4149
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
12 additions
and
20 deletions
+12
-20
dlgutil.cxx
svx/source/dialog/dlgutil.cxx
+1
-1
framelink.cxx
svx/source/dialog/framelink.cxx
+1
-1
framelinkarray.cxx
svx/source/dialog/framelinkarray.cxx
+0
-2
frmsel.cxx
svx/source/dialog/frmsel.cxx
+3
-3
txencbox.cxx
svx/source/dialog/txencbox.cxx
+1
-7
datalistener.cxx
svx/source/form/datalistener.cxx
+1
-1
datanavi.cxx
svx/source/form/datanavi.cxx
+0
-0
pszctrl.cxx
svx/source/stbctrls/pszctrl.cxx
+2
-2
xmlsecctrl.cxx
svx/source/stbctrls/xmlsecctrl.cxx
+1
-1
tablertfimporter.cxx
svx/source/table/tablertfimporter.cxx
+1
-1
tbxcolor.cxx
svx/source/tbxctrls/tbxcolor.cxx
+1
-1
No files found.
svx/source/dialog/dlgutil.cxx
Dosyayı görüntüle @
ae71f5b4
...
...
@@ -79,7 +79,7 @@ bool GetApplyCharUnit( const SfxItemSet& rSet )
}
else
{
DBG_ERRORFILE
(
"GetApplyCharUnit(): no module found"
);
SAL_INFO
(
"svx"
,
"GetApplyCharUnit(): no module found"
);
}
}
}
...
...
svx/source/dialog/framelink.cxx
Dosyayı görüntüle @
ae71f5b4
...
...
@@ -560,7 +560,7 @@ void lclLinkLeftEnd(
}
else
{
DBG_ERRORFILE
(
"lclLinkLeftEnd - called for invisible frame style"
);
SAL_INFO
(
"svx"
,
"lclLinkLeftEnd - called for invisible frame style"
);
}
}
...
...
svx/source/dialog/framelinkarray.cxx
Dosyayı görüntüle @
ae71f5b4
...
...
@@ -310,7 +310,6 @@ MergedCellIterator& MergedCellIterator::operator++()
// ============================================================================
#define DBG_FRAME_ERROR( funcname, error ) DBG_ERRORFILE( "svx::frame::Array::" funcname " - " error )
#define DBG_FRAME_CHECK( cond, funcname, error ) DBG_ASSERT( cond, "svx::frame::Array::" funcname " - " error )
#define DBG_FRAME_CHECK_COL( col, funcname ) DBG_FRAME_CHECK( (col) < GetColCount(), funcname, "invalid column index" )
#define DBG_FRAME_CHECK_ROW( row, funcname ) DBG_FRAME_CHECK( (row) < GetRowCount(), funcname, "invalid row index" )
...
...
@@ -1284,7 +1283,6 @@ void Array::DrawArray( OutputDevice& rDev, const Color* pForceColor ) const
#undef DBG_FRAME_CHECK_ROW
#undef DBG_FRAME_CHECK_COL
#undef DBG_FRAME_CHECK
#undef DBG_FRAME_ERROR
// ============================================================================
...
...
svx/source/dialog/frmsel.cxx
Dosyayı görüntüle @
ae71f5b4
...
...
@@ -164,7 +164,7 @@ void FrameBorder::SetState( FrameBorderState eState )
switch
(
meState
)
{
case
FRAMESTATE_SHOW
:
DBG_ERRORFILE
(
"svx::FrameBorder::SetState - use SetCoreStyle to make border visible"
);
SAL_INFO
(
"svx"
,
"svx::FrameBorder::SetState - use SetCoreStyle to make border visible"
);
break
;
case
FRAMESTATE_HIDE
:
maCoreStyle
=
SvxBorderLine
();
...
...
@@ -220,7 +220,7 @@ FrameBorderType FrameBorder::GetKeyboardNeighbor( sal_uInt16 nKeyCode ) const
case
KEY_RIGHT
:
eBorder
=
meKeyRight
;
break
;
case
KEY_UP
:
eBorder
=
meKeyTop
;
break
;
case
KEY_DOWN
:
eBorder
=
meKeyBottom
;
break
;
default
:
DBG_ERRORFILE
(
"svx::FrameBorder::GetKeyboardNeighbor - unknown key code"
);
default
:
SAL_INFO
(
"svx"
,
"svx::FrameBorder::GetKeyboardNeighbor - unknown key code"
);
}
return
eBorder
;
}
...
...
@@ -515,7 +515,7 @@ const FrameBorder& FrameSelectorImpl::GetBorder( FrameBorderType eBorder ) const
size_t
nIndex
=
GetIndexFromFrameBorderType
(
eBorder
);
if
(
nIndex
<
maAllBorders
.
size
()
)
return
*
maAllBorders
[
nIndex
];
DBG_ERRORFILE
(
"svx::FrameSelectorImpl::GetBorder - unknown border type"
);
SAL_INFO
(
"svx"
,
"svx::FrameSelectorImpl::GetBorder - unknown border type"
);
return
maTop
;
}
...
...
svx/source/dialog/txencbox.cxx
Dosyayı görüntüle @
ae71f5b4
...
...
@@ -199,13 +199,7 @@ void SvxTextEncodingBox::InsertTextEncoding( const rtl_TextEncoding nEnc, sal_uI
if
(
rEntry
.
Len
()
)
InsertTextEncoding
(
nEnc
,
rEntry
,
nPos
);
else
{
#ifdef DBG_UTIL
rtl
::
OStringBuffer
aMsg
(
RTL_CONSTASCII_STRINGPARAM
(
"SvxTextEncodingBox::InsertTextEncoding: no resource string for text encoding: "
));
aMsg
.
append
(
static_cast
<
sal_Int32
>
(
nEnc
));
DBG_ERRORFILE
(
aMsg
.
getStr
());
#endif
}
SAL_INFO
(
"svx"
,
"SvxTextEncodingBox::InsertTextEncoding: no resource string for text encoding: "
<<
static_cast
<
sal_Int32
>
(
nEnc
)
);
}
//------------------------------------------------------------------------
...
...
svx/source/form/datalistener.cxx
Dosyayı görüntüle @
ae71f5b4
...
...
@@ -88,7 +88,7 @@ namespace svxform
// lang::XEventListener
void
SAL_CALL
DataListener
::
disposing
(
const
EventObject
&
/*Source*/
)
throw
(
RuntimeException
)
{
DBG_ERRORFILE
(
"disposing"
);
SAL_INFO
(
"svx"
,
"disposing"
);
}
//............................................................................
...
...
svx/source/form/datanavi.cxx
Dosyayı görüntüle @
ae71f5b4
This diff is collapsed.
Click to expand it.
svx/source/stbctrls/pszctrl.cxx
Dosyayı görüntüle @
ae71f5b4
...
...
@@ -266,7 +266,7 @@ void SvxPosSizeStatusBarControl::StateChanged( sal_uInt16 nSID, SfxItemState eSt
pImp
->
bSize
=
sal_False
;
else
{
DBG_ERRORFILE
(
"unknown slot id"
);
SAL_INFO
(
"svx"
,
"unknown slot id"
);
}
}
else
if
(
pState
->
ISA
(
SfxPointItem
)
)
...
...
@@ -293,7 +293,7 @@ void SvxPosSizeStatusBarControl::StateChanged( sal_uInt16 nSID, SfxItemState eSt
}
else
{
DBG_ERRORFILE
(
"invalid item type"
);
SAL_INFO
(
"svx"
,
"invalid item type"
);
pImp
->
bPos
=
sal_False
;
pImp
->
bSize
=
sal_False
;
pImp
->
bTable
=
sal_False
;
...
...
svx/source/stbctrls/xmlsecctrl.cxx
Dosyayı görüntüle @
ae71f5b4
...
...
@@ -91,7 +91,7 @@ void XmlSecStatusBarControl::StateChanged( sal_uInt16, SfxItemState eState, cons
}
else
{
DBG_ERRORFILE
(
"+XmlSecStatusBarControl::StateChanged(): invalid item type"
);
SAL_INFO
(
"svx"
,
"+XmlSecStatusBarControl::StateChanged(): invalid item type"
);
mpImpl
->
mnState
=
(
sal_uInt16
)
SIGNATURESTATE_UNKNOWN
;
}
...
...
svx/source/table/tablertfimporter.cxx
Dosyayı görüntüle @
ae71f5b4
...
...
@@ -207,7 +207,7 @@ IMPL_LINK( SdrTableRTFParser, RTFImportHdl, ImportInfo*, pInfo )
case
RTFIMP_INSERTPARA
:
break
;
default
:
DBG_ERRORFILE
(
"unknown ImportInfo.eState"
);
SAL_INFO
(
"svx"
,
"unknown ImportInfo.eState"
);
}
return
0
;
}
...
...
svx/source/tbxctrls/tbxcolor.cxx
Dosyayı görüntüle @
ae71f5b4
...
...
@@ -68,7 +68,7 @@ namespace svx
}
catch
(
Exception
&
)
{
DBG_ERRORFILE
(
"ToolboxAccess::Ctor(): exception"
);
SAL_INFO
(
"svx"
,
"ToolboxAccess::Ctor(): exception"
);
}
}
}
...
...
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