summaryrefslogtreecommitdiffstats
path: root/include/dbaccess
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2015-01-24 13:54:30 +0100
committerJulien Nabet <serval2412@yahoo.fr>2015-01-24 13:55:28 +0100
commit285654bf79f4e09d9ac0f6974db08df85446a500 (patch)
treecd4d9b00cb9a47629b4763ae862f003a1e92505e /include/dbaccess
parentThis cast is complete rubbish of course (diff)
downloadcore-285654bf79f4e09d9ac0f6974db08df85446a500.tar.gz
core-285654bf79f4e09d9ac0f6974db08df85446a500.zip
Typo: ..syncronous..=>synchronous (dbaccess)
Change-Id: I97b57baf3777227c2d90b52a564d81b44e73a30a
Diffstat (limited to 'include/dbaccess')
-rw-r--r--include/dbaccess/AsynchronousLink.hxx (renamed from include/dbaccess/AsyncronousLink.hxx)8
-rw-r--r--include/dbaccess/genericcontroller.hxx6
2 files changed, 7 insertions, 7 deletions
diff --git a/include/dbaccess/AsyncronousLink.hxx b/include/dbaccess/AsynchronousLink.hxx
index b0ba02d854be..155630db7e06 100644
--- a/include/dbaccess/AsyncronousLink.hxx
+++ b/include/dbaccess/AsynchronousLink.hxx
@@ -36,7 +36,7 @@ namespace dbaui
event while another thread tries to delete this event in the _destructor_ of the
class).
*/
- class OAsyncronousLink
+ class OAsynchronousLink
{
Link m_aHandler;
@@ -47,10 +47,10 @@ namespace dbaui
public:
/** constructs the object
- @param _rHandler The link to be called asyncronously
+ @param _rHandler The link to be called asynchronously
*/
- OAsyncronousLink( const Link& _rHandler );
- virtual ~OAsyncronousLink();
+ OAsynchronousLink( const Link& _rHandler );
+ virtual ~OAsynchronousLink();
bool IsRunning() const { return m_nEventId != 0; }
diff --git a/include/dbaccess/genericcontroller.hxx b/include/dbaccess/genericcontroller.hxx
index 79169c3ff9ba..c8dbb0b2660c 100644
--- a/include/dbaccess/genericcontroller.hxx
+++ b/include/dbaccess/genericcontroller.hxx
@@ -26,7 +26,7 @@
#include <map>
#include <vector>
-#include <dbaccess/AsyncronousLink.hxx>
+#include <dbaccess/AsynchronousLink.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
- OAsyncronousLink m_aAsyncInvalidateAll;
- OAsyncronousLink m_aAsyncCloseTask; // called when a task should be closed
+ OAsynchronousLink m_aAsyncInvalidateAll;
+ OAsynchronousLink 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;