summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2013-08-20 18:26:05 +0100
committerMichael Meeks <michael.meeks@suse.com>2013-08-20 19:30:59 +0000
commit1c7af455ab9345304a7ac48ce2e0310de2ac8a75 (patch)
tree4c71062081ca1990f45c33c6a3ed0ed14278bd34 /dbaccess
parentc3164e42dcdf879ed53e235db13f498eb730bae9 (diff)
Re-work 8bit characters in source code, or remove them.
Change-Id: I93e14d4936c0ffbe03425d4a54bb0e09bc62b3e3 Reviewed-on: https://gerrit.libreoffice.org/5550 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Michael Meeks <michael.meeks@suse.com> Tested-by: Michael Meeks <michael.meeks@suse.com>
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/core/api/RowSetCache.cxx3
-rw-r--r--dbaccess/source/ui/querydesign/querycontroller.cxx11
-rw-r--r--dbaccess/source/ui/tabledesign/TableFieldControl.cxx2
3 files changed, 7 insertions, 9 deletions
diff --git a/dbaccess/source/core/api/RowSetCache.cxx b/dbaccess/source/core/api/RowSetCache.cxx
index e6a2805f7577..adcb5c257d47 100644
--- a/dbaccess/source/core/api/RowSetCache.cxx
+++ b/dbaccess/source/core/api/RowSetCache.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include "BookmarkSet.hxx"
#include "CRowSetColumn.hxx"
#include "CRowSetDataColumn.hxx"
@@ -1000,7 +999,7 @@ sal_Bool ORowSetCache::moveWindow()
"ORowSetCache::moveWindow opportunistic fetch-after-current-end went badly");
}
- // À priori, the rows from begin() [inclusive] to (begin() + nNewStartPos - m_nStartPos) [exclusive]
+ // A priori, the rows from begin() [inclusive] to (begin() + nNewStartPos - m_nStartPos) [exclusive]
// have to be refilled with new to-be-fetched rows.
// The rows behind this can be reused
ORowSetMatrix::iterator aIter = m_pMatrix->begin();
diff --git a/dbaccess/source/ui/querydesign/querycontroller.cxx b/dbaccess/source/ui/querydesign/querycontroller.cxx
index 867abb848e12..82c1422c12ae 100644
--- a/dbaccess/source/ui/querydesign/querycontroller.cxx
+++ b/dbaccess/source/ui/querydesign/querycontroller.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include "adtabdlg.hxx"
#include "browserids.hxx"
#include "dbu_qry.hrc"
@@ -881,9 +880,9 @@ void OQueryController::impl_initialize()
OUString sCommand;
m_nCommandType = CommandType::QUERY;
- // �����������������������������������������������������������������������������������������������������������������
- // � reading parameters
- // �����������������������������������������������������������������������������������������������������������������
+ // .........................................................................
+ // . reading parameters:
+
// legacy parameters first (later overwritten by regular parameters)
OUString sIndependentSQLCommand;
if ( rArguments.get_ensureType( "IndependentSQLCommand", sIndependentSQLCommand ) )
@@ -953,7 +952,7 @@ void OQueryController::impl_initialize()
m_bGraphicalDesign = false;
}
- // .................................................................................................................
+ // .........................................................................
// . initial design
bool bForceInitialDesign = false;
Sequence< PropertyValue > aCurrentQueryDesignProps;
@@ -983,7 +982,7 @@ void OQueryController::impl_initialize()
bForceInitialDesign = true;
}
- // �����������������������������������������������������������������������������������������������������������������
+ // .........................................................................
if ( !ensureConnected( sal_False ) )
{ // we have no connection so what else should we do
m_bGraphicalDesign = sal_False;
diff --git a/dbaccess/source/ui/tabledesign/TableFieldControl.cxx b/dbaccess/source/ui/tabledesign/TableFieldControl.cxx
index 457035c43cdb..df118795d9b6 100644
--- a/dbaccess/source/ui/tabledesign/TableFieldControl.cxx
+++ b/dbaccess/source/ui/tabledesign/TableFieldControl.cxx
@@ -55,7 +55,7 @@ sal_Bool OTableFieldControl::IsReadOnly()
sal_Bool bRead(GetCtrl()->IsReadOnly());
if( !bRead )
{
- // Die Spalten einer ::com::sun::star::sdbcx::View knnen nicht verndert werden
+ // Die Spalten einer ::com::sun::star::sdbcx::View konnen nicht verindert werden
Reference<XPropertySet> xTable = GetCtrl()->GetView()->getController().getTable();
if(xTable.is() && ::comphelper::getString(xTable->getPropertyValue(PROPERTY_TYPE)) == OUString("VIEW"))
bRead = sal_True;