diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-01-24 18:47:48 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-01-24 18:47:48 +0100 |
commit | c2972964dcca294048888c7edd0400c49d1a9a2f (patch) | |
tree | 3e4c45f6ba8ccd932a7f379e870127358d37a1ea /dbaccess/source/ui/app/AppController.cxx | |
parent | b59b2372503e15a52bc0d2e7f35b74ff72dc9256 (diff) |
Typo: syncro->synchro (dbaccess)
Change-Id: I9a6ed15d695763580148803dbeacfd210c5689f8
Diffstat (limited to 'dbaccess/source/ui/app/AppController.cxx')
-rw-r--r-- | dbaccess/source/ui/app/AppController.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/app/AppController.cxx b/dbaccess/source/ui/app/AppController.cxx index 9d45476b4852..cfbb3a9f069c 100644 --- a/dbaccess/source/ui/app/AppController.cxx +++ b/dbaccess/source/ui/app/AppController.cxx @@ -2478,7 +2478,7 @@ sal_Int8 OApplicationController::executeDrop( const ExecuteDropEvent& _rEvt ) { m_aAsyncDrop.aDroppedData = ODataAccessObjectTransferable::extractObjectDescriptor(aDroppedData); - // asyncron because we some dialogs and we aren't allowed to show them while in D&D + // asynchron because we some dialogs and we aren't allowed to show them while in D&D m_nAsyncDrop = Application::PostUserEvent(LINK(this, OApplicationController, OnAsyncDrop)); return DND_ACTION_COPY; } @@ -2526,7 +2526,7 @@ sal_Int8 OApplicationController::executeDrop( const ExecuteDropEvent& _rEvt ) if ( nAction != DND_ACTION_NONE ) { m_aAsyncDrop.nAction = nAction; - // asyncron because we some dialogs and we aren't allowed to show them while in D&D + // asynchron because we some dialogs and we aren't allowed to show them while in D&D m_nAsyncDrop = Application::PostUserEvent(LINK(this, OApplicationController, OnAsyncDrop)); } else @@ -2538,7 +2538,7 @@ sal_Int8 OApplicationController::executeDrop( const ExecuteDropEvent& _rEvt ) SharedConnection xConnection( ensureConnection() ); if ( xConnection.is() && m_aTableCopyHelper.copyTagTable( aDroppedData, m_aAsyncDrop, xConnection ) ) { - // asyncron because we some dialogs and we aren't allowed to show them while in D&D + // asynchron because we some dialogs and we aren't allowed to show them while in D&D m_nAsyncDrop = Application::PostUserEvent(LINK(this, OApplicationController, OnAsyncDrop)); return DND_ACTION_COPY; } |