diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-04-19 21:09:51 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2014-04-19 21:10:28 +0200 |
commit | 254ae249247c0e4484ec48c0d255c66a341c7dfd (patch) | |
tree | 9d813660ac9c949fb39524d0c49d707e0fba14cf | |
parent | 3bc517828a10ca9ef4c76afbd8538f0fc9a62034 (diff) |
cpplint: [readability/utf8] Line contains invalid UTF-8
Change-Id: Ifb8793c3a1647bfa0d02e471419acb434dcea951
-rw-r--r-- | hwpfilter/source/hfont.cxx | 2 | ||||
-rw-r--r-- | hwpfilter/source/hiodev.cxx | 4 | ||||
-rw-r--r-- | svx/source/form/fmshimp.cxx | 2 | ||||
-rw-r--r-- | svx/source/form/formcontroller.cxx | 4 | ||||
-rw-r--r-- | xmloff/source/forms/elementexport.cxx | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/hwpfilter/source/hfont.cxx b/hwpfilter/source/hfont.cxx index 0671cfcd5834..6be9ef0dcb31 100644 --- a/hwpfilter/source/hfont.cxx +++ b/hwpfilter/source/hfont.cxx @@ -21,7 +21,7 @@ #include "hwplib.h" #include "hwpfile.h" #include "hfont.h" -/* Լ HWP ؼϴ κ̴. */ +/* 이 함수는 HWP 파일을 해석하는 부분이다. */ HWPFont::HWPFont(void) { diff --git a/hwpfilter/source/hiodev.cxx b/hwpfilter/source/hiodev.cxx index 5de1b5c7e890..577b5f854c9a 100644 --- a/hwpfilter/source/hiodev.cxx +++ b/hwpfilter/source/hiodev.cxx @@ -143,7 +143,7 @@ void HStreamIODev::flush(void) void HStreamIODev::close(void) { -/* ÷ ݴ´. */ +/* 플러시한 후 닫는다. */ this->flush(); if (_gzfp) gz_close(_gzfp); /* gz_close() calls stream_closeInput() */ @@ -159,7 +159,7 @@ int HStreamIODev::state(void) const } -/* zlib κ */ +/* zlib 관련 부분 */ bool HStreamIODev::setCompressed(bool flag) { compressed = flag; diff --git a/svx/source/form/fmshimp.cxx b/svx/source/form/fmshimp.cxx index 5e3aceaa2ae3..47a36a9ef310 100644 --- a/svx/source/form/fmshimp.cxx +++ b/svx/source/form/fmshimp.cxx @@ -2043,7 +2043,7 @@ bool FmXFormShell::setCurrentSelection( const InterfaceBag& _rSelection ) m_aCurrentSelection = _rSelection; - // determine the form which all the selected obj�cts belong to, if any + // determine the form which all the selected objects belong to, if any Reference< XForm > xNewCurrentForm; for ( InterfaceBag::const_iterator loop = m_aCurrentSelection.begin(); loop != m_aCurrentSelection.end(); diff --git a/svx/source/form/formcontroller.cxx b/svx/source/form/formcontroller.cxx index 769302eb2eb4..8cc2cde485b8 100644 --- a/svx/source/form/formcontroller.cxx +++ b/svx/source/form/formcontroller.cxx @@ -2197,7 +2197,7 @@ void FormController::setControlLock(const Reference< XControl > & xControl) // b.) wenn das zugehoerige Feld gespeert ist Reference< XBoundControl > xBound(xControl, UNO_QUERY); if (xBound.is() && (( (bLocked && (bLocked ? 1 : 0) != xBound->getLock()) || - !bLocked))) // beim entlocken immer einzelne Felder ueberpr�fen + !bLocked))) // beim entlocken immer einzelne Felder ueberprüfen { // gibt es eine Datenquelle Reference< XPropertySet > xSet(xControl->getModel(), UNO_QUERY); @@ -2910,7 +2910,7 @@ void SAL_CALL FormController::elementRemoved(const ContainerEvent& evt) throw( R if (xModel.is() && m_xModelAsIndex == xModel->getParent()) { removeControl(xControl); - // TabOrder nicht neu berechnen, da das intern schon funktionieren mu�! + // TabOrder nicht neu berechnen, da das intern schon funktionieren muss! } // are we in filtermode and a XModeSelector has inserted an element else if (m_bFiltering && Reference< XModeSelector > (evt.Source, UNO_QUERY).is()) diff --git a/xmloff/source/forms/elementexport.cxx b/xmloff/source/forms/elementexport.cxx index 3db796ace565..6a94b3484c95 100644 --- a/xmloff/source/forms/elementexport.cxx +++ b/xmloff/source/forms/elementexport.cxx @@ -2077,7 +2077,7 @@ namespace xmloff OElementExport::exportSubTags(); // loop through all children Reference< XIndexAccess > xCollection(m_xProps, UNO_QUERY); - OSL_ENSURE(xCollection.is(), "OFormLayerXMLExport::implExportForm: a form which is not an index access? Suspic�ous!"); + OSL_ENSURE(xCollection.is(), "OFormLayerXMLExport::implExportForm: a form which is not an index access? Suspicious!"); if (xCollection.is()) m_rContext.exportCollectionElements(xCollection); |