summaryrefslogtreecommitdiff
path: root/dbaccess/source
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source')
-rw-r--r--dbaccess/source/core/api/SingleSelectQueryComposer.cxx2
-rw-r--r--dbaccess/source/ext/macromigration/migrationengine.cxx2
-rw-r--r--dbaccess/source/ui/browser/sbagrid.cxx2
-rw-r--r--dbaccess/source/ui/dlg/dbfindex.cxx2
-rw-r--r--dbaccess/source/ui/dlg/generalpage.cxx2
-rw-r--r--dbaccess/source/ui/dlg/generalpage.hxx2
-rw-r--r--dbaccess/source/ui/dlg/indexfieldscontrol.cxx2
-rw-r--r--dbaccess/source/ui/dlg/tablespage.cxx2
-rw-r--r--dbaccess/source/ui/inc/TableController.hxx2
9 files changed, 9 insertions, 9 deletions
diff --git a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
index 89e9b021fded..546352b72fcf 100644
--- a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
+++ b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
@@ -593,7 +593,7 @@ void SAL_CALL OSingleSelectQueryComposer::setElementaryQuery( const OUString& _r
for ( SQLPart eLoopParts = Where; eLoopParts != SQLPartCount; incSQLPart( eLoopParts ) )
m_aElementaryParts[ eLoopParts ] = getSQLPart( eLoopParts, m_aSqlIterator, sal_False );
- // reset the the AdditiveIterator: m_aPureSelectSQL may have changed
+ // reset the AdditiveIterator: m_aPureSelectSQL may have changed
try
{
parseAndCheck_throwError( m_aSqlParser, composeStatementFromParts( aAdditiveClauses ), m_aAdditiveIterator, *this );
diff --git a/dbaccess/source/ext/macromigration/migrationengine.cxx b/dbaccess/source/ext/macromigration/migrationengine.cxx
index cd17f77b3e4d..6f7f603bbc52 100644
--- a/dbaccess/source/ext/macromigration/migrationengine.cxx
+++ b/dbaccess/source/ext/macromigration/migrationengine.cxx
@@ -684,7 +684,7 @@ namespace dbmm
Reference< XStorageBasedDocument > xStorageDoc( _rxDocument, UNO_QUERY_THROW );
Reference< XStorage > xDocStorage( xStorageDoc->getDocumentStorage(), UNO_QUERY_THROW );
- // the the "Scripts" storage exist, or if it does not (yet) exist and we are in write mode
+ // the "Scripts" storage exist, or if it does not (yet) exist and we are in write mode
// => open the storage
if ( ( xDocStorage->hasByName( lcl_getScriptsStorageName() )
&& xDocStorage->isStorageElement( lcl_getScriptsStorageName() )
diff --git a/dbaccess/source/ui/browser/sbagrid.cxx b/dbaccess/source/ui/browser/sbagrid.cxx
index d1d419802284..8e2b65ba225d 100644
--- a/dbaccess/source/ui/browser/sbagrid.cxx
+++ b/dbaccess/source/ui/browser/sbagrid.cxx
@@ -657,7 +657,7 @@ sal_Bool SbaGridHeader::ImplStartColumnDrag(sal_Int8 _nAction, const Point& _rMo
}
if (!bResizingCol)
{
- // force the the base class to end it's drag mode
+ // force the base class to end it's drag mode
EndTracking(ENDTRACK_CANCEL | ENDTRACK_END);
// because we have 3d-buttons the select handler is called from MouseButtonUp, but StartDrag
diff --git a/dbaccess/source/ui/dlg/dbfindex.cxx b/dbaccess/source/ui/dlg/dbfindex.cxx
index 8e5dce8294cd..62c3cdabbb1d 100644
--- a/dbaccess/source/ui/dlg/dbfindex.cxx
+++ b/dbaccess/source/ui/dlg/dbfindex.cxx
@@ -282,7 +282,7 @@ void ODbaseIndexDialog::Init()
// All indizes are first added to a list of free indizes.
// Afterwards, check the index of each table in the Inf-file.
// These indizes are removed from the list of free indizes and
- // entered in the indexlist of the the table.
+ // entered in the indexlist of the table.
// if the string does not contain a path, cut the string
INetURLObject aURL;
diff --git a/dbaccess/source/ui/dlg/generalpage.cxx b/dbaccess/source/ui/dlg/generalpage.cxx
index fe3600da1358..29d725282472 100644
--- a/dbaccess/source/ui/dlg/generalpage.cxx
+++ b/dbaccess/source/ui/dlg/generalpage.cxx
@@ -276,7 +276,7 @@ namespace dbaui
//-------------------------------------------------------------------------
void OGeneralPage::onTypeSelected(const ::rtl::OUString& _sURLPrefix)
{
- // the the new URL text as indicated by the selection history
+ // the new URL text as indicated by the selection history
implSetCurrentType( _sURLPrefix );
switchMessage(_sURLPrefix);
diff --git a/dbaccess/source/ui/dlg/generalpage.hxx b/dbaccess/source/ui/dlg/generalpage.hxx
index 53708847116e..684c5a36c4ec 100644
--- a/dbaccess/source/ui/dlg/generalpage.hxx
+++ b/dbaccess/source/ui/dlg/generalpage.hxx
@@ -142,7 +142,7 @@ namespace dbaui
void switchMessage(const ::rtl::OUString& _sURLPrefix);
- /// sets the the title of the parent dialog
+ /// sets the title of the parent dialog
void setParentTitle(const ::rtl::OUString& _sURLPrefix);
DECL_LINK(OnDatasourceTypeSelected, ListBox*);
diff --git a/dbaccess/source/ui/dlg/indexfieldscontrol.cxx b/dbaccess/source/ui/dlg/indexfieldscontrol.cxx
index 120140063ef7..c8da8ae16ee8 100644
--- a/dbaccess/source/ui/dlg/indexfieldscontrol.cxx
+++ b/dbaccess/source/ui/dlg/indexfieldscontrol.cxx
@@ -184,7 +184,7 @@ DBG_NAME(IndexFieldsControl)
SetUpdateMode(sal_False);
// remove all rows
RowRemoved(1, GetRowCount());
- // insert rows for the the fields
+ // insert rows for the fields
RowInserted(GetRowCount(), m_aFields.size(), sal_False);
// insert an additional row for a new field for that index
RowInserted(GetRowCount(), 1, sal_False);
diff --git a/dbaccess/source/ui/dlg/tablespage.cxx b/dbaccess/source/ui/dlg/tablespage.cxx
index 220596bbb682..4443a3ced3a4 100644
--- a/dbaccess/source/ui/dlg/tablespage.cxx
+++ b/dbaccess/source/ui/dlg/tablespage.cxx
@@ -393,7 +393,7 @@ DBG_NAME(OTableSubscriptionPage)
pExpand = NULL;
}
- // update the toolbox according the the current selection and check state
+ // update the toolbox according the current selection and check state
OGenericAdministrationPage::implInitControls(_rSet, _bSaveValue);
}
diff --git a/dbaccess/source/ui/inc/TableController.hxx b/dbaccess/source/ui/inc/TableController.hxx
index b5eda7cb613a..ed8a2dcf92f8 100644
--- a/dbaccess/source/ui/inc/TableController.hxx
+++ b/dbaccess/source/ui/inc/TableController.hxx
@@ -101,7 +101,7 @@ namespace dbaui
inline ::std::vector< ::boost::shared_ptr<OTableRow> >* getRows() { return &m_vRowList; }
- /// returns the postion of the the first empty row
+ /// returns the postion of the first empty row
sal_Int32 getFirstEmptyRowPosition();
inline const OTypeInfoMap* getTypeInfo() const { return &m_aTypeInfo; }