[Libreoffice-commits] core.git: hwpfilter/source svx/source xmloff/source

Julien Nabet serval2412 at yahoo.fr
Sat Apr 19 12:11:09 PDT 2014


 hwpfilter/source/hfont.cxx            |    2 +-
 hwpfilter/source/hiodev.cxx           |    4 ++--
 svx/source/form/fmshimp.cxx           |    2 +-
 svx/source/form/formcontroller.cxx    |    4 ++--
 xmloff/source/forms/elementexport.cxx |    2 +-
 5 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 254ae249247c0e4484ec48c0d255c66a341c7dfd
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sat Apr 19 21:09:51 2014 +0200

    cpplint: [readability/utf8] Line contains invalid UTF-8
    
    Change-Id: Ifb8793c3a1647bfa0d02e471419acb434dcea951

diff --git a/hwpfilter/source/hfont.cxx b/hwpfilter/source/hfont.cxx
index 0671cfc..6be9ef0 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 5de1b5c..577b5f8 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 5e3acea..47a36a9 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 769302e..8cc2cde 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 3db796a..6a94b34 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);


More information about the Libreoffice-commits mailing list