diff options
author | Jan Holesovsky <kendy@collabora.com> | 2014-04-26 19:28:59 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2014-04-27 01:28:55 +0200 |
commit | e6ac6cbccf0e26b860b2a8c276fea258091d9da3 (patch) | |
tree | cc02ebc6b409c507892bcf550e21f70c0c52b3d5 /sfx2 | |
parent | 367b254c73bf7b64135f0429d50d03fee749cef7 (diff) |
automaticly -> automatically.
Change-Id: Iae55083160eee86ac8301f272634dd3ae65fd847
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/appserv.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/bastyp/fltlst.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/dialog/backingcomp.cxx | 2 | ||||
-rw-r--r-- | sfx2/source/doc/printhelper.cxx | 8 |
4 files changed, 7 insertions, 7 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx index 0fa9242c6b4f..7730e329c38c 100644 --- a/sfx2/source/appl/appserv.cxx +++ b/sfx2/source/appl/appserv.cxx @@ -303,7 +303,7 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq ) { /* Dont save the request for closing the application and try it later again. This is an UI bound functionality ... and the user will try it again - if the dialog is closed. But we should not close the application automaticly + if the dialog is closed. But we should not close the application automatically if this dialog is closed by the user ... So we ignore this request now and wait for a new user decision. */ diff --git a/sfx2/source/bastyp/fltlst.cxx b/sfx2/source/bastyp/fltlst.cxx index d2198bf2aa4c..3b66b1d9915a 100644 --- a/sfx2/source/bastyp/fltlst.cxx +++ b/sfx2/source/bastyp/fltlst.cxx @@ -69,7 +69,7 @@ class SfxRefreshListener : public ::cppu::WeakImplHelper1<com::sun::star::util:: /*-************************************************************************************************************ @short ctor - @descr These initialize an instance of a SfxFilterListener class. Created object listen automaticly + @descr These initialize an instance of a SfxFilterListener class. Created object listen automatically on right FilterFactory-Service for all changes and synchronize right SfxFilterContainer with corresponding framework-cache. We use given "sFactory" value to decide which query must be used to fill "pContainer" with new values. diff --git a/sfx2/source/dialog/backingcomp.cxx b/sfx2/source/dialog/backingcomp.cxx index c8e85e3bcdf1..435d161dd029 100644 --- a/sfx2/source/dialog/backingcomp.cxx +++ b/sfx2/source/dialog/backingcomp.cxx @@ -559,7 +559,7 @@ sal_Bool SAL_CALL BackingComp::suspend( /*IN*/ sal_Bool ) and inform us. We must release its reference only here. Of course we check the given reference here and reject callback from unknown sources. - Note: deregistration as listener isnt necessary here. The broadcaster do it automaticly. + Note: deregistration as listener isnt necessary here. The broadcaster do it automatically. @param aEvent describe the broadcaster of this callback diff --git a/sfx2/source/doc/printhelper.cxx b/sfx2/source/doc/printhelper.cxx index 016652ecdf58..842fd2402a80 100644 --- a/sfx2/source/doc/printhelper.cxx +++ b/sfx2/source/doc/printhelper.cxx @@ -477,7 +477,7 @@ class ImplUCBPrintWatcher : public ::osl::Thread SfxPrinter* m_pPrinter; /// this describes the target location for the printed temp file OUString m_sTargetURL; - /// it holds the temp file alive, till the print job will finish and remove it from disk automaticly if the object die + /// it holds the temp file alive, till the print job will finish and remove it from disk automatically if the object die ::utl::TempFile* m_pTempFile; public: @@ -507,7 +507,7 @@ class ImplUCBPrintWatcher : public ::osl::Thread // we truns alone by defenition. Nobody join for us nor use us ... moveAndDeleteTemp(&m_pTempFile,m_sTargetURL); - // finishing of this run() method will call onTerminate() automaticly + // finishing of this run() method will call onTerminate() automatically // kill this thread there! } @@ -675,7 +675,7 @@ void SAL_CALL SfxPrintHelper::print(const uno::Sequence< beans::PropertyValue >& // it's an ucb target. So we must use a temp. file for vcl // and move it after printing by using the ucb. // Create a temp file on the heap (because it must delete the - // real file on disk automaticly if it die - bt we have to share it with + // real file on disk automatically if it die - bt we have to share it with // some other sources ... e.g. the ImplUCBPrintWatcher). // And we put the name of this temp file to the descriptor instead // of the URL. The URL we save for later using separately. @@ -784,7 +784,7 @@ void SAL_CALL SfxPrintHelper::print(const uno::Sequence< beans::PropertyValue >& else { // Note: we create(d) some resource on the heap. (thread and tep file) - // They will be deleted by the thread automaticly if he finish his run() method. + // They will be deleted by the thread automatically if he finish his run() method. ImplUCBPrintWatcher* pWatcher = new ImplUCBPrintWatcher( pPrinter, pUCBPrintTempFile, sUcbUrl ); pWatcher->create(); } |