diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-01-24 14:03:44 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-01-24 14:03:44 +0100 |
commit | 025db4982dc0305d1e346f1342d2fc7dde139c02 (patch) | |
tree | 0485dd80b0d6b59391652dcd96b93b5f5c9a1e6f /include | |
parent | 285654bf79f4e09d9ac0f6974db08df85446a500 (diff) |
Revert "Typo: ..syncronous..=>synchronous (dbaccess)"
This reverts commit 285654bf79f4e09d9ac0f6974db08df85446a500.
Diffstat (limited to 'include')
-rw-r--r-- | include/dbaccess/AsyncronousLink.hxx (renamed from include/dbaccess/AsynchronousLink.hxx) | 8 | ||||
-rw-r--r-- | include/dbaccess/genericcontroller.hxx | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/include/dbaccess/AsynchronousLink.hxx b/include/dbaccess/AsyncronousLink.hxx index 155630db7e06..b0ba02d854be 100644 --- a/include/dbaccess/AsynchronousLink.hxx +++ b/include/dbaccess/AsyncronousLink.hxx @@ -36,7 +36,7 @@ namespace dbaui event while another thread tries to delete this event in the _destructor_ of the class). */ - class OAsynchronousLink + class OAsyncronousLink { Link m_aHandler; @@ -47,10 +47,10 @@ namespace dbaui public: /** constructs the object - @param _rHandler The link to be called asynchronously + @param _rHandler The link to be called asyncronously */ - OAsynchronousLink( const Link& _rHandler ); - virtual ~OAsynchronousLink(); + OAsyncronousLink( const Link& _rHandler ); + virtual ~OAsyncronousLink(); bool IsRunning() const { return m_nEventId != 0; } diff --git a/include/dbaccess/genericcontroller.hxx b/include/dbaccess/genericcontroller.hxx index c8dbb0b2660c..79169c3ff9ba 100644 --- a/include/dbaccess/genericcontroller.hxx +++ b/include/dbaccess/genericcontroller.hxx @@ -26,7 +26,7 @@ #include <map> #include <vector> -#include <dbaccess/AsynchronousLink.hxx> +#include <dbaccess/AsyncronousLink.hxx> #include <dbaccess/controllerframe.hxx> #include <dbaccess/dbaccessdllapi.h> #include <dbaccess/IController.hxx> @@ -238,8 +238,8 @@ namespace dbaui ::osl::Mutex m_aFeatureMutex; // locked when features are append to or remove from deque StateCache m_aStateCache; // save the current status of feature state Dispatch m_arrStatusListener; // all our listeners where we dispatch status changes - OAsynchronousLink m_aAsyncInvalidateAll; - OAsynchronousLink m_aAsyncCloseTask; // called when a task should be closed + OAsyncronousLink m_aAsyncInvalidateAll; + OAsyncronousLink m_aAsyncCloseTask; // called when a task should be closed ::com::sun::star::uno::Reference< ::com::sun::star::util::XURLTransformer > m_xUrlTransformer; // needed sometimes ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext; |