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
4e3baf32
Kaydet (Commit)
4e3baf32
authored
Nis 10, 2013
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
svidl: more helpful error message for missing slot / types.
Change-Id: I89537f526e465137f5e8c17b4d7fd134ba59af4a
üst
72a0656f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
basobj.cxx
idl/source/objects/basobj.cxx
+1
-0
types.cxx
idl/source/objects/types.cxx
+7
-1
database.cxx
idl/source/prj/database.cxx
+1
-1
No files found.
idl/source/objects/basobj.cxx
Dosyayı görüntüle @
4e3baf32
...
...
@@ -182,6 +182,7 @@ void SvMetaName::ReadAttributesSvIdl( SvIdlDataBase & rBase,
if
(
!
SetName
(
aName
.
getString
(),
&
rBase
)
)
rInStm
.
Seek
(
nTokPos
);
}
aHelpContext
.
ReadSvIdl
(
rBase
,
SvHash_HelpContext
(),
rInStm
);
aHelpText
.
ReadSvIdl
(
rBase
,
rInStm
);
aConfigName
.
ReadSvIdl
(
SvHash_ConfigName
(),
rInStm
);
...
...
idl/source/objects/types.cxx
Dosyayı görüntüle @
4e3baf32
...
...
@@ -218,7 +218,13 @@ sal_Bool SvMetaAttribute::ReadSvIdl( SvIdlDataBase & rBase,
bOk
=
SvMetaName
::
ReadSvIdl
(
rBase
,
rInStm
);
}
else
rBase
.
SetError
(
"unknown type"
,
rInStm
.
GetToken
()
);
{
SvToken
*
pTok
=
rInStm
.
GetToken
();
rBase
.
SetError
(
"unknown type of token. Each new SID needs an "
"item statement in an SDI file, eg. "
"SfxVoidItem FooItem "
+
pTok
->
GetTokenAsString
()
+
" ... which describes the slot more fully"
,
pTok
);
}
if
(
!
bOk
)
rInStm
.
Seek
(
nTokPos
);
...
...
idl/source/prj/database.cxx
Dosyayı görüntüle @
4e3baf32
...
...
@@ -160,7 +160,7 @@ void SvIdlDataBase::Save( SvStream & rStm, sal_uInt32 nFlags )
void
SvIdlDataBase
::
SetError
(
const
OString
&
rError
,
SvToken
*
pTok
)
{
if
(
pTok
->
GetLine
()
>
10000
)
aError
.
SetText
(
"
hgchcg
"
);
aError
.
SetText
(
"
line count overflow
"
);
if
(
aError
.
nLine
<
pTok
->
GetLine
()
||
(
aError
.
nLine
==
pTok
->
GetLine
()
&&
aError
.
nColumn
<
pTok
->
GetColumn
())
)
...
...
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