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
fb79d200
Kaydet (Commit)
fb79d200
authored
Şub 23, 2013
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix typo, "charcter" -> "character"
Change-Id: Idde59a616b16c52b7369dd67e7a06eab52b334c8
üst
c4cc63ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
saxwriter.cxx
sax/source/expatwrap/saxwriter.cxx
+7
-7
unitconverter.hxx
sc/source/filter/inc/unitconverter.hxx
+1
-1
No files found.
sax/source/expatwrap/saxwriter.cxx
Dosyayı görüntüle @
fb79d200
...
...
@@ -1137,13 +1137,13 @@ void SAXWriter::startElement(const OUString& aName, const Reference< XAttributeL
if
(
eRet
==
SAX_WARNING
)
{
SAXInvalidCharacterException
except
;
except
.
Message
=
OUString
(
"Invalid charcter during XML-Export in a attribute value"
);
except
.
Message
=
OUString
(
"Invalid char
a
cter during XML-Export in a attribute value"
);
throw
except
;
}
else
if
(
eRet
==
SAX_ERROR
)
{
SAXException
except
;
except
.
Message
=
OUString
(
"Invalid charcter during XML-Export"
);
except
.
Message
=
OUString
(
"Invalid char
a
cter during XML-Export"
);
throw
except
;
}
}
...
...
@@ -1179,7 +1179,7 @@ void SAXWriter::endElement(const OUString& aName) throw (SAXException, Runtime
if
(
!
bRet
)
{
SAXException
except
;
except
.
Message
=
OUString
(
"Invalid charcter during XML-Export"
);
except
.
Message
=
OUString
(
"Invalid char
a
cter during XML-Export"
);
throw
except
;
}
}
...
...
@@ -1231,7 +1231,7 @@ void SAXWriter::characters(const OUString& aChars) throw(SAXException, RuntimeE
if
(
bThrowException
)
{
SAXInvalidCharacterException
except
;
except
.
Message
=
OUString
(
"Invalid charcter during XML-Export"
);
except
.
Message
=
OUString
(
"Invalid char
a
cter during XML-Export"
);
throw
except
;
}
}
...
...
@@ -1276,7 +1276,7 @@ void SAXWriter::processingInstruction(const OUString& aTarget, const OUString& a
if
(
!
mp_SaxWriterHelper
->
processingInstruction
(
aTarget
,
aData
))
{
SAXException
except
;
except
.
Message
=
OUString
(
"Invalid charcter during XML-Export"
);
except
.
Message
=
OUString
(
"Invalid char
a
cter during XML-Export"
);
throw
except
;
}
}
...
...
@@ -1348,7 +1348,7 @@ void SAXWriter::comment(const OUString& sComment) throw(SAXException, RuntimeExc
if
(
!
mp_SaxWriterHelper
->
comment
(
sComment
))
{
SAXException
except
;
except
.
Message
=
OUString
(
"Invalid charcter during XML-Export"
);
except
.
Message
=
OUString
(
"Invalid char
a
cter during XML-Export"
);
throw
except
;
}
}
...
...
@@ -1389,7 +1389,7 @@ void SAXWriter::unknown(const OUString& sString) throw (SAXException, RuntimeExc
if
(
!
mp_SaxWriterHelper
->
writeString
(
sString
,
sal_False
,
sal_False
))
{
SAXException
except
;
except
.
Message
=
OUString
(
"Invalid charcter during XML-Export"
);
except
.
Message
=
OUString
(
"Invalid char
a
cter during XML-Export"
);
throw
except
;
}
}
...
...
sc/source/filter/inc/unitconverter.hxx
Dosyayı görüntüle @
fb79d200
...
...
@@ -57,7 +57,7 @@ enum Unit
default font of the imported/exported document. The default font is always
the first font in the styles font list, and is always referenced by the
default cell style ("Normal" style in Excel) which is used by all empty
unformatted cells in the document. To be able to calculate the charcter
unformatted cells in the document. To be able to calculate the char
a
cter
width correctly, the default font must be known, which is the case after
the finalizeImport() or finalizeExport() functions have been called. Caller
must make sure to not call the character width conversion functions before.
...
...
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