Kaydet (Commit) 66e5cbc5 authored tarafından Julien Nabet's avatar Julien Nabet

Fix typo "sucessfully" -> "successfully"

Change-Id: I01c85e4d3853c44fa05acc3019bc35c56c4f655e
üst fe86d0ca
......@@ -521,7 +521,7 @@ bool executePostgresCommand( const rtl::OString & cmd, struct CommandData *data
rtl::OStringBuffer buf( 128 );
buf.append( "executed command '" );
buf.append( cmd.getStr() );
buf.append( "' sucessfully (" );
buf.append( "' successfully (" );
buf.append( *( data->pMultipleResultUpdateCount ) );
buf.append( ")" );
buf.append( ", duration=" );
......@@ -672,7 +672,7 @@ bool executePostgresCommand( const rtl::OString & cmd, struct CommandData *data
rtl::OStringBuffer buf( 128 );
buf.append( RTL_CONSTASCII_STRINGPARAM("executed query '") );
buf.append( cmd );
buf.append( RTL_CONSTASCII_STRINGPARAM("' sucessfully") );
buf.append( RTL_CONSTASCII_STRINGPARAM("' successfully") );
buf.append( RTL_CONSTASCII_STRINGPARAM(", duration=") );
buf.append( duration );
buf.append( RTL_CONSTASCII_STRINGPARAM("ms, returnedRows=") );
......
......@@ -198,7 +198,7 @@
* msdos/runargv.c, tests/recipes-9, unix/runargv.c:
#i80598# Always issue a warning if the actual execution of a recipe line
(this does not include sucessfully executed, but failing programs) fails.
(this does not include successfully executed, but failing programs) fails.
2007-09-24 17:45 vq
......
......@@ -199,7 +199,7 @@ CMtaFolderPicker::~CMtaFolderPicker( )
// we place unregister class here because
// if we have a valid window we must have
// sucessfully registered a window class
// successfully registered a window class
// if the creation of the window itself
// failed after registering the window
// class we have unregistered it immediately
......
......@@ -212,7 +212,7 @@ class JobData : private ThreadHelpBase
css::uno::Sequence< css::beans::NamedValue > m_lArguments;
/**
after a job was sucessfully executed (by any outside code using our
after a job was successfully executed (by any outside code using our
informations) it can return a result. This member make it part of this
container too. So it can be used for further things.
We use it also to update our internal state and the configuration
......
......@@ -104,7 +104,7 @@ gz_stream *gz_open(HStream & _stream)
/* ===========================================================================
Read a byte from a gz_stream; update next_in and avail_in. Return EOF
for end of file.
IN assertion: the stream s has been sucessfully opened for reading.
IN assertion: the stream s has been successfully opened for reading.
*/
local int get_byte(gz_stream * s)
{
......
......@@ -96,7 +96,7 @@ SAL_IMPLEMENT_MAIN()
return 1;
}
printf( "Connected sucessfully to the office\n" );
printf( "Connected successfully to the office\n" );
}
catch( Exception &e )
{
......
......@@ -438,7 +438,7 @@ public class _XFrame extends MultiMethodTest {
/**
* Test calls the method. Remembered old creater is restored at the end. <p>
* Has <b> OK </b> status if the method sucessfully set new value to (XFrame)
* Has <b> OK </b> status if the method successfully set new value to (XFrame)
* oObj object.
*/
public void _setCreator() {
......
......@@ -41,7 +41,7 @@ import java.util.HashMap;
public class Type {
// The following private static members and static initializer must come
// first in the class definition, so that the class can be initialized
// sucessfully:
// successfully:
private static final String TYPE_NAME_VOID = "void";
private static final String TYPE_NAME_BOOLEAN = "boolean";
......
......@@ -88,9 +88,9 @@ class ScFormatFilterPlugin {
virtual FltError ScImportQuattroPro( SfxMedium &rMedium, ScDocument *pDoc ) = 0;
virtual FltError ScImportExcel( SfxMedium&, ScDocument*, const EXCIMPFORMAT ) = 0;
// eFormat == EIF_AUTO -> matching filter is used automatically
// eFormat == EIF_BIFF5 -> only Biff5 stream is read sucessfully (in an Excel97 doc, too)
// eFormat == EIF_BIFF8 -> only Biff8 stream is read sucessfully (only in Excel97 docs)
// eFormat == EIF_BIFF_LE4 -> only non storage files _might_ be read sucessfully
// eFormat == EIF_BIFF5 -> only Biff5 stream is read successfully (in an Excel97 doc, too)
// eFormat == EIF_BIFF8 -> only Biff8 stream is read successfully (only in Excel97 docs)
// eFormat == EIF_BIFF_LE4 -> only non storage files _might_ be read successfully
virtual FltError ScImportStarCalc10( SvStream&, ScDocument* ) = 0;
virtual FltError ScImportDif( SvStream&, ScDocument*, const ScAddress& rInsPos,
const CharSet eSrc = RTL_TEXTENCODING_DONTKNOW, sal_uInt32 nDifOption = SC_DIFOPT_EXCEL ) = 0;
......
......@@ -589,12 +589,12 @@ template<typename prefix> sal_Size write_lenPrefixed_uInt16s_FromOUString(SvStre
/// Attempt to read 8bit units to an OString until a zero terminator is
/// encountered, returned rtl::OString's length is number of units *definitely*
/// successfully read, check SvStream::good() to see if null terminator was
/// sucessfully read
/// successfully read
TOOLS_DLLPUBLIC rtl::OString read_zeroTerminated_uInt8s_ToOString(SvStream& rStrm);
/// Attempt to read 8bit units assuming source encoding eEnc to an OUString
/// until a zero terminator is encountered. Check SvStream::good() to see if
/// null terminator was sucessfully read
/// null terminator was successfully read
TOOLS_DLLPUBLIC rtl::OUString read_zeroTerminated_uInt8s_ToOUString(SvStream& rStrm, rtl_TextEncoding eEnc);
/// Attempt to read a pascal-style length (of type prefix) prefixed sequence of
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment