summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/misc/RowSetDrop.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-13 13:46:07 +0200
committerNoel Grandin <noel@peralex.com>2014-05-14 10:00:03 +0200
commitca86511a6eaa4de43cc9b498d5d8f140967224b3 (patch)
treec9753d0db3d2949aa6915d6f4c7cbea21bd21a35 /dbaccess/source/ui/misc/RowSetDrop.cxx
parent613b9fa442e26d21f512016108ed921eb9964fbb (diff)
dbaccess: remove SAL_INFO's that only make function entry
Change-Id: Ibdf92698446d0a7aed7c474ec7d3ea720cd2c2a6
Diffstat (limited to 'dbaccess/source/ui/misc/RowSetDrop.cxx')
-rw-r--r--dbaccess/source/ui/misc/RowSetDrop.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/dbaccess/source/ui/misc/RowSetDrop.cxx b/dbaccess/source/ui/misc/RowSetDrop.cxx
index b7c0be6e525a..6f374f003933 100644
--- a/dbaccess/source/ui/misc/RowSetDrop.cxx
+++ b/dbaccess/source/ui/misc/RowSetDrop.cxx
@@ -50,13 +50,11 @@ ORowSetImportExport::ORowSetImportExport( Window* _pParent,
,m_pParent(_pParent)
,m_bAlreadyAsked(false)
{
- SAL_INFO("dbaccess.ui", "ORowSetImportExport::ORowSetImportExport" );
OSL_ENSURE(_pParent,"Window can't be null!");
}
void ORowSetImportExport::initialize()
{
- SAL_INFO("dbaccess.ui", "ORowSetImportExport::initialize" );
ODatabaseImportExport::initialize();
// do namemapping
Reference<XColumnLocate> xColumnLocate(m_xResultSet,UNO_QUERY);
@@ -96,13 +94,11 @@ void ORowSetImportExport::initialize()
bool ORowSetImportExport::Write()
{
- SAL_INFO("dbaccess.ui", "ORowSetImportExport::Write" );
return true;
}
bool ORowSetImportExport::Read()
{
- SAL_INFO("dbaccess.ui", "ORowSetImportExport::Read" );
// check if there is any column to copy
if(::std::find_if(m_aColumnMapping.begin(),m_aColumnMapping.end(),
::std::bind2nd(::std::greater<sal_Int32>(),0)) == m_aColumnMapping.end())
@@ -157,7 +153,6 @@ bool ORowSetImportExport::Read()
bool ORowSetImportExport::insertNewRow()
{
- SAL_INFO("dbaccess.ui", "ORowSetImportExport::insertNewRow" );
try
{
m_xTargetResultSetUpdate->moveToInsertRow();