avmedia/source/opengl/oglmanager.cxx | 2 - filter/source/xslt/export/uof/odf2uof_spreadsheet.xsl | 4 +-- filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl | 2 - include/connectivity/TColumnsHelper.hxx | 2 - qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java | 2 - sal/qa/osl/file/osl_File.cxx | 2 - sal/qa/osl/socket/osl_Socket.cxx | 8 +++--- sal/qa/osl/socket/osl_StreamSocket.cxx | 12 +++++----- sc/inc/dpsave.hxx | 2 - stoc/source/javavm/javavm.cxx | 2 - unotools/qa/complex/tempfile/TestHelper.java | 2 - 11 files changed, 20 insertions(+), 20 deletions(-)
New commits: commit f25cae2e18fda91c47c57b799c45bc074119b211 Author: Julien Nabet <[email protected]> Date: Sat Apr 4 23:08:02 2015 +0200 Typo: creat->create Change-Id: I5e57e6d506504933096f4c8e371b0ddc93c04cbd diff --git a/avmedia/source/opengl/oglmanager.cxx b/avmedia/source/opengl/oglmanager.cxx index ed290a8..1c329eb 100644 --- a/avmedia/source/opengl/oglmanager.cxx +++ b/avmedia/source/opengl/oglmanager.cxx @@ -36,7 +36,7 @@ uno::Reference< media::XPlayer > SAL_CALL OGLManager::createPlayer( const OUStri else { delete pPlayer; - SAL_WARN("avmedia.opengl", "Can't creat player for OpenGL model: " + rURL); + SAL_WARN("avmedia.opengl", "Can't create player for OpenGL model: " + rURL); return uno::Reference< media::XPlayer >(); } } diff --git a/filter/source/xslt/export/uof/odf2uof_spreadsheet.xsl b/filter/source/xslt/export/uof/odf2uof_spreadsheet.xsl index d7dabaa..88ba9a5 100644 --- a/filter/source/xslt/export/uof/odf2uof_spreadsheet.xsl +++ b/filter/source/xslt/export/uof/odf2uof_spreadsheet.xsl @@ -379,7 +379,7 @@ <xsl:attribute name="uof:locID">s0026</xsl:attribute> <表:æ ç¾åæ¯è² uof:locID="s0027">#000000</表:æ ç¾åæ¯è²> <表:æ ç¾èæ¯è² uof:locID="s0028">#ffffff</表:æ ç¾èæ¯è²> - <xsl:call-template name="creat-page-setting"> + <xsl:call-template name="create-page-setting"> <xsl:with-param name="master-page" select="/*/office:master-styles/style:master-page"/> <xsl:with-param name="page-master-style" select="/*/office:automatic-styles/style:page-layout/style:page-layout-properties"/> </xsl:call-template> @@ -5186,7 +5186,7 @@ </xsl:template> <!--Redoffice comment end liliang--> <!--chenjh add 20050624--> - <xsl:template name="creat-page-setting"> + <xsl:template name="create-page-setting"> <xsl:param name="master-page"/> <xsl:param name="page-master-style"/> <xsl:element name="表:页é¢è®¾ç½®"> diff --git a/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl b/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl index a5875c2..fa09a05 100644 --- a/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl +++ b/filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl @@ -1134,7 +1134,7 @@ </xsl:choose> </xsl:with-param> </xsl:call-template> - <!-- creat style:map for other sub number formats --> + <!-- create style:map for other sub number formats --> <xsl:if test="$current-unit = 0 and $total-unit > 1"> <xsl:variable name="style-condition1"> <xsl:call-template name="get-number-format-condition"> diff --git a/include/connectivity/TColumnsHelper.hxx b/include/connectivity/TColumnsHelper.hxx index 50b8b14..ac281c3 100644 --- a/include/connectivity/TColumnsHelper.hxx +++ b/include/connectivity/TColumnsHelper.hxx @@ -29,7 +29,7 @@ namespace connectivity { class OTableHelper; class OColumnsHelperImpl; - /** contains generell column handling to creat default columns and default sql statements. + /** contains generell column handling to create default columns and default sql statements. */ class OOO_DLLPUBLIC_DBTOOLS OColumnsHelper : public sdbcx::OCollection { diff --git a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java index 8ecbb47..6f8bf8e 100644 --- a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java +++ b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java @@ -142,7 +142,7 @@ public class XMLStylesExporter extends TestCase { //obtain style family with name[0] Object objectStyle = StyleFamilies.getByName(styleFamilyName); XNameContainer xStyleFamilyName = UnoRuntime.queryInterface(XNameContainer.class, objectStyle); - //creat new style + //create new style Object SC = SOF.createInstance(xDrawDoc, "com.sun.star.style.Style"); XStyle Style = UnoRuntime.queryInterface(XStyle.class,SC); //add new style to style familiy with name[0] diff --git a/sal/qa/osl/file/osl_File.cxx b/sal/qa/osl/file/osl_File.cxx index b5c5cc2..cec250d 100644 --- a/sal/qa/osl/file/osl_File.cxx +++ b/sal/qa/osl/file/osl_File.cxx @@ -2077,7 +2077,7 @@ namespace osl_FileStatus fd = remove( strLinkFileName.getStr() ); CPPUNIT_ASSERT_MESSAGE( "in deleting link file", fd == 0 ); - CPPUNIT_ASSERT_MESSAGE( "test for getLinkTargetURL function: Solaris version, creat a file, and a link file link to it, get its LinkTargetURL and compare", + CPPUNIT_ASSERT_MESSAGE( "test for getLinkTargetURL function: Solaris version, create a file, and a link file link to it, get its LinkTargetURL and compare", compareFileName( aFileURL, aTypeURL ) ); } #else diff --git a/sal/qa/osl/socket/osl_Socket.cxx b/sal/qa/osl/socket/osl_Socket.cxx index d3fb012..94eed88 100644 --- a/sal/qa/osl/socket/osl_Socket.cxx +++ b/sal/qa/osl/socket/osl_Socket.cxx @@ -363,7 +363,7 @@ public: csConnectorSocket( ) { m_id = getIdentifier( ); - //t_print("# successfully creat this client thread %d!\n", m_id ); + //t_print("# successfully create this client thread %d!\n", m_id ); } ~ClientSocketThread( ) @@ -434,7 +434,7 @@ public: ServerSocketThread( ) { m_id = getIdentifier( ); - //t_print("# successfully creat this server thread %d!\n", m_id ); + //t_print("# successfully create this server thread %d!\n", m_id ); } ~ServerSocketThread( ) @@ -552,7 +552,7 @@ public: csConnectorSocket( ) { m_id = getIdentifier( ); - //t_print("# successfully creat this client thread %d!\n", m_id ); + //t_print("# successfully create this client thread %d!\n", m_id ); m_aValues.createBuffer(_nBufferSize, 0); } @@ -625,7 +625,7 @@ public: WriteSocketThread(sal_Int32 _nBufferSize, int _nValue ) { m_id = getIdentifier( ); - //t_print("# successfully creat this server thread %d!\n", m_id ); + //t_print("# successfully create this server thread %d!\n", m_id ); m_aValues.createBuffer(_nBufferSize, _nValue); } diff --git a/sal/qa/osl/socket/osl_StreamSocket.cxx b/sal/qa/osl/socket/osl_StreamSocket.cxx index 05906f0..42b9b75 100644 --- a/sal/qa/osl/socket/osl_StreamSocket.cxx +++ b/sal/qa/osl/socket/osl_StreamSocket.cxx @@ -182,7 +182,7 @@ public: m_aCondition.reset(); t_print("#init ServerSocketThread\n"); m_id = getIdentifier( ); - //t_print("# successfully creat this ServerSocketThread %d!\n", m_id ); + //t_print("# successfully create this ServerSocketThread %d!\n", m_id ); } ~ServerSocketThread( ) @@ -243,7 +243,7 @@ public: m_csConnectorSocket( ) { m_id = getIdentifier( ); - //t_print("# successfully creat this client thread %d!\n", m_id ); + //t_print("# successfully create this client thread %d!\n", m_id ); } ~ClientSocketThread( ) @@ -374,7 +374,7 @@ public: t_print("#init ReadSocketThread\n"); m_id = getIdentifier( ); - //t_print("# successfully creat this client thread %d!\n", m_id ); + //t_print("# successfully create this client thread %d!\n", m_id ); m_aValues.createBuffer(_nBufferSize, 0); } @@ -470,7 +470,7 @@ public: t_print("#init WriteSocketThread\n"); m_id = getIdentifier( ); - //t_print("# successfully creat this server thread %d!\n", m_id ); + //t_print("# successfully create this server thread %d!\n", m_id ); m_aValues.createBuffer(_nBufferSize, _nValue); } @@ -723,7 +723,7 @@ namespace osl_StreamSocket m_saTargetSocketAddr( rtl::OUString("127.0.0.1"), IP_PORT_MYPORT9 ), m_csConnectorSocket( ) { - //t_print("# successfully creat this SendClientThread %d!\n", m_id ); + //t_print("# successfully create this SendClientThread %d!\n", m_id ); } ~SendClientThread( ) @@ -987,7 +987,7 @@ namespace osl_StreamSocket } m_id = getIdentifier( ); - //t_print("# successfully creat this client thread %d!\n", m_id ); + //t_print("# successfully create this client thread %d!\n", m_id ); } void setAddr(rtl::OString const& _sAddr) diff --git a/sc/inc/dpsave.hxx b/sc/inc/dpsave.hxx index 9b2136b..20d5ffb 100644 --- a/sc/inc/dpsave.hxx +++ b/sc/inc/dpsave.hxx @@ -210,7 +210,7 @@ public: ScDPSaveMember* GetExistingMemberByName(const OUString& rName); /** - * Get a member object by its name. If one doesn't exist, creat a new + * Get a member object by its name. If one doesn't exist, create a new * object and return it. This class manages the life cycle of all member * objects belonging to it, so <i>don't delete the returned instance.</i> * diff --git a/stoc/source/javavm/javavm.cxx b/stoc/source/javavm/javavm.cxx index 216041d..be3e41f 100644 --- a/stoc/source/javavm/javavm.cxx +++ b/stoc/source/javavm/javavm.cxx @@ -1415,7 +1415,7 @@ void JavaVirtualMachine::setINetSettingsInVM(bool set_reset) OUString sHttpProxyPort("http.proxyPort"); OUString sHttpNonProxyHosts("http.nonProxyHosts"); - // creat Java Properties as JNI strings + // create Java Properties as JNI strings jstring jsFtpProxyHost= pJNIEnv->NewString( sFtpProxyHost.getStr(), sFtpProxyHost.getLength()); if(pJNIEnv->ExceptionOccurred()) throw css::uno::RuntimeException("JNI:NewString", 0); jstring jsFtpProxyPort= pJNIEnv->NewString( sFtpProxyPort.getStr(), sFtpProxyPort.getLength()); diff --git a/unotools/qa/complex/tempfile/TestHelper.java b/unotools/qa/complex/tempfile/TestHelper.java index 28b9796..d3d8239 100644 --- a/unotools/qa/complex/tempfile/TestHelper.java +++ b/unotools/qa/complex/tempfile/TestHelper.java @@ -119,7 +119,7 @@ public class TestHelper { xInTemp.closeInput(); Message ( "Read directly from tempfile successfully." ); } else { - Error ( "Cannot creat input stream from URL." ); + Error ( "Cannot create input stream from URL." ); } } }
_______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
