dbaccess/source/ui/misc/UpdateHelperImpl.hxx | 9 --------- 1 file changed, 9 deletions(-)
New commits: commit 5730dd48cad67f71a2ab3792b59920470dd7c682 Author: Ricardo Montania <rica...@linuxafundo.com.br> Date: Mon Jul 15 07:12:26 2013 -0300 fdo#63690 drop RTL_LOGFILE_CONTEXT_AUTHOR Change-Id: I46823bb2c6fc44a4871d9535c1f59bd24ba75858 Reviewed-on: https://gerrit.libreoffice.org/4908 Reviewed-by: Björn Michaelsen <bjoern.michael...@canonical.com> Tested-by: Björn Michaelsen <bjoern.michael...@canonical.com> diff --git a/dbaccess/source/ui/misc/UpdateHelperImpl.hxx b/dbaccess/source/ui/misc/UpdateHelperImpl.hxx index 0d81d25..6e4dcb3 100644 --- a/dbaccess/source/ui/misc/UpdateHelperImpl.hxx +++ b/dbaccess/source/ui/misc/UpdateHelperImpl.hxx @@ -26,7 +26,6 @@ #include <com/sun/star/sdbc/XRowSet.hpp> #include <com/sun/star/sdbc/XResultSetMetaData.hpp> #include "IUpdateHelper.hxx" -#include <rtl/logfile.hxx> namespace dbaui { @@ -93,37 +92,30 @@ namespace dbaui virtual ~OParameterUpdateHelper() {} virtual void updateString(sal_Int32 _nPos, const OUString& _sValue) { - RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "misc", "ocke.jans...@sun.com", "OParameterUpdateHelper::updateString" ); m_xParameters->setString(_nPos, _sValue); } virtual void updateDouble(sal_Int32 _nPos,const double& _nValue) { - RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "misc", "ocke.jans...@sun.com", "OParameterUpdateHelper::updateDouble" ); m_xParameters->setDouble(_nPos, _nValue); } virtual void updateDate(sal_Int32 _nPos,const ::com::sun::star::util::Date& _nValue) { - RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "misc", "ocke.jans...@sun.com", "OParameterUpdateHelper::updateDouble" ); m_xParameters->setDate(_nPos, _nValue); } virtual void updateTime(sal_Int32 _nPos,const ::com::sun::star::util::Time& _nValue) { - RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "misc", "ocke.jans...@sun.com", "OParameterUpdateHelper::updateDouble" ); m_xParameters->setTime(_nPos, _nValue); } virtual void updateTimestamp(sal_Int32 _nPos,const ::com::sun::star::util::DateTime& _nValue) { - RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "misc", "ocke.jans...@sun.com", "OParameterUpdateHelper::updateDouble" ); m_xParameters->setTimestamp(_nPos, _nValue); } virtual void updateInt(sal_Int32 _nPos,const sal_Int32& _nValue) { - RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "misc", "ocke.jans...@sun.com", "OParameterUpdateHelper::updateInt" ); m_xParameters->setInt(_nPos, _nValue); } virtual void updateNull(sal_Int32 _nPos, ::sal_Int32 sqlType) { - RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "misc", "ocke.jans...@sun.com", "OParameterUpdateHelper::updateNull" ); m_xParameters->setNull(_nPos,sqlType); } virtual void moveToInsertRow() @@ -131,7 +123,6 @@ namespace dbaui } virtual void insertRow() { - RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "misc", "ocke.jans...@sun.com", "OParameterUpdateHelper::insertRow" ); m_xPrepared->executeUpdate(); } };
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits