summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-06-16 13:16:03 +0200
committerMichael Stahl <mstahl@redhat.com>2015-06-16 11:25:13 +0000
commit3fa7b0b70f8f21c65603aa2b7db53392fdbceec4 (patch)
tree62eec9d96f1ebcad33233186636a6bb3244371b9 /dbaccess
parent814af9f1e59d1a76473b2c72cae4ba8afe1c52d4 (diff)
Fix typos
Change-Id: Id8c7cf460cba5af89891c470e1aaa61b227d356e Reviewed-on: https://gerrit.libreoffice.org/16310 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/filter/xml/xmlfilter.hxx2
-rw-r--r--dbaccess/source/ui/browser/sbagrid.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/filter/xml/xmlfilter.hxx b/dbaccess/source/filter/xml/xmlfilter.hxx
index 6e9243345459..732db5213d50 100644
--- a/dbaccess/source/filter/xml/xmlfilter.hxx
+++ b/dbaccess/source/filter/xml/xmlfilter.hxx
@@ -144,7 +144,7 @@ public:
rtl::Reference < XMLPropertySetMapper > GetColumnStylesPropertySetMapper() const;
rtl::Reference < XMLPropertySetMapper > GetCellStylesPropertySetMapper() const;
- /** add a Info to the sequence which will be appened to the data source
+ /** add a Info to the sequence which will be appended to the data source
@param _rInfo The property to append.
*/
inline void addInfo(const ::com::sun::star::beans::PropertyValue& _rInfo)
diff --git a/dbaccess/source/ui/browser/sbagrid.cxx b/dbaccess/source/ui/browser/sbagrid.cxx
index ab4cc0e7aab4..7f21dc615819 100644
--- a/dbaccess/source/ui/browser/sbagrid.cxx
+++ b/dbaccess/source/ui/browser/sbagrid.cxx
@@ -1049,14 +1049,14 @@ void SbaGridControl::StartDrag( sal_Int8 _nAction, const Point& _rPosPixel )
// determine if dragging is allowed
// (Yes, this is controller (not view) functionality. But collecting and evaluating all the
// information necessary via UNO would be quite difficult (if not impossible) so
- // my laziness says 'do it here' ...)
+ // my laziness says 'do it here'...)
long nRow = GetRowAtYPosPixel(_rPosPixel.Y());
sal_uInt16 nColPos = GetColumnAtXPosPixel(_rPosPixel.X());
sal_uInt16 nViewPos = (nColPos == BROWSER_INVALIDID) ? (sal_uInt16)-1 : nColPos-1;
// 'the handle column' and 'no valid column' will both result in a view position of -1 !
bool bCurrentRowVirtual = IsCurrentAppending() && IsModified();
- // the current row doesn't really exist : the user's appendign a new one and already has entered some data,
+ // the current row doesn't really exist: the user's appending a new one and already has entered some data,
// so the row contains data which has no counter part within the data source
long nCorrectRowCount = GetRowCount();