summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-05 18:51:10 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-09-11 23:43:34 +0200
commit157420e496ddebd7101d88ba8d07164d3971ad22 (patch)
treeb126bef25094bdc494604025c7f240f1026f5633 /dbaccess/source/ui/dlg
parent6bddab1d2553defebf6b2ebdd80553413d364dd8 (diff)
Typos
Mainly fixing '..' and '....' Change-Id: Ied226ed148c571d278ae65b3f468bd329f557fa9 Reviewed-on: https://gerrit.libreoffice.org/78669 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'dbaccess/source/ui/dlg')
-rw-r--r--dbaccess/source/ui/dlg/ConnectionHelper.cxx2
-rw-r--r--dbaccess/source/ui/dlg/dbadmin.cxx2
-rw-r--r--dbaccess/source/ui/dlg/indexdialog.cxx4
-rw-r--r--dbaccess/source/ui/dlg/paramdialog.cxx10
4 files changed, 9 insertions, 9 deletions
diff --git a/dbaccess/source/ui/dlg/ConnectionHelper.cxx b/dbaccess/source/ui/dlg/ConnectionHelper.cxx
index 6154cb7a789d..18dde46c0c52 100644
--- a/dbaccess/source/ui/dlg/ConnectionHelper.cxx
+++ b/dbaccess/source/ui/dlg/ConnectionHelper.cxx
@@ -668,7 +668,7 @@ namespace dbaui
if ( ( sURL != sOldPath ) && !sURL.isEmpty() )
{ // the text changed since entering the control
- // the path may be in system notation ....
+ // the path may be in system notation...
OFileNotation aTransformer(sURL);
sURL = aTransformer.get(OFileNotation::N_URL);
diff --git a/dbaccess/source/ui/dlg/dbadmin.cxx b/dbaccess/source/ui/dlg/dbadmin.cxx
index 83b8bf1c2ce4..5eccd1a29bf7 100644
--- a/dbaccess/source/ui/dlg/dbadmin.cxx
+++ b/dbaccess/source/ui/dlg/dbadmin.cxx
@@ -266,7 +266,7 @@ void ODbAdminDialog::clearPassword()
void ODbAdminDialog::createItemSet(std::unique_ptr<SfxItemSet>& _rpSet, SfxItemPool*& _rpPool, std::vector<SfxPoolItem*>*& _rpDefaults, ::dbaccess::ODsnTypeCollection* _pTypeCollection)
{
- // just to be sure ....
+ // just to be sure...
_rpSet = nullptr;
_rpPool = nullptr;
_rpDefaults = nullptr;
diff --git a/dbaccess/source/ui/dlg/indexdialog.cxx b/dbaccess/source/ui/dlg/indexdialog.cxx
index 446737e41e1f..9d42d02623fb 100644
--- a/dbaccess/source/ui/dlg/indexdialog.cxx
+++ b/dbaccess/source/ui/dlg/indexdialog.cxx
@@ -540,7 +540,7 @@ namespace dbaui
{
OSL_ENSURE(!m_bEditAgain, "DbaIndexDialog::OnCloseDialog: somebody was faster than hell!");
// this means somebody entered a new name, which was invalid, which cause us to posted us an event,
- // and before the event arrived the user clicked onto "close". VERY fast, this user ....
+ // and before the event arrived the user clicked onto "close". VERY fast, this user...
m_pIndexList->EndEditing();
if (m_bEditAgain)
// could not commit the new name (started a new - asynchronous - edit trial)
@@ -618,7 +618,7 @@ namespace dbaui
if (aPosition->isNew())
{
updateToolbox();
- // no commitment needed here ....
+ // no commitment needed here...
return true;
}
diff --git a/dbaccess/source/ui/dlg/paramdialog.cxx b/dbaccess/source/ui/dlg/paramdialog.cxx
index 370c733eafb7..ff59348cd952 100644
--- a/dbaccess/source/ui/dlg/paramdialog.cxx
+++ b/dbaccess/source/ui/dlg/paramdialog.cxx
@@ -206,7 +206,7 @@ namespace dbaui
{
if (m_xCancelBtn.get() == &rButton)
{
- // no interpreting of the given values anymore ....
+ // no interpreting of the given values anymore...
m_xParam->connect_focus_out(Link<weld::Widget&, void>()); // no direct call from the control anymore ...
m_bNeedErrorOnCurrent = false; // in case of any indirect calls -> no error message
m_xDialog->response(RET_CANCEL);
@@ -218,8 +218,8 @@ namespace dbaui
{ // there was an error interpreting the current text
m_bNeedErrorOnCurrent = true;
// we're are out of the complex web :) of direct and indirect calls to OnValueLoseFocus now,
- // so the next time it is called we need an error message, again ....
- // (TODO : there surely are better solutions for this ...)
+ // so the next time it is called we need an error message, again...
+ // (TODO : there surely are better solutions for this...)
return;
}
@@ -267,8 +267,8 @@ namespace dbaui
OnEntrySelected();
m_bNeedErrorOnCurrent = true;
// we're are out of the complex web :) of direct and indirect calls to OnValueLoseFocus now,
- // so the next time it is called we need an error message, again ....
- // (TODO : there surely are better solutions for this ...)
+ // so the next time it is called we need an error message, again...
+ // (TODO : there surely are better solutions for this...)
}
}
}