summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/adtabdlg.cxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2002-07-18 07:56:25 +0000
committerOcke Janssen <oj@openoffice.org>2002-07-18 07:56:25 +0000
commit99ffb563c56c9d9e86f55d2faa905d1131c9e1d5 (patch)
treeff5fc19007e6f1a3fe398f1c4cfdfb7707941082 /dbaccess/source/ui/dlg/adtabdlg.cxx
parentda79bf2330565df3a2a705be5e619c93abb3a365 (diff)
#97321# erase the wrong entries in vector (not removed)
Diffstat (limited to 'dbaccess/source/ui/dlg/adtabdlg.cxx')
-rw-r--r--dbaccess/source/ui/dlg/adtabdlg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/dlg/adtabdlg.cxx b/dbaccess/source/ui/dlg/adtabdlg.cxx
index 77b6575a0e7c..37480fe4d7fe 100644
--- a/dbaccess/source/ui/dlg/adtabdlg.cxx
+++ b/dbaccess/source/ui/dlg/adtabdlg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: adtabdlg.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: vg $ $Date: 2002-07-16 09:53:18 $
+ * last change: $Author: oj $ $Date: 2002-07-18 08:56:25 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -273,7 +273,7 @@ void OAddTableDlg::UpdateTableList(BOOL bViewsAllowed)
const ::rtl::OUString* pViewEnd = pViewBegin + sViews.getLength();
::comphelper::TStringMixEqualFunctor aEqualFunctor;
for(;pViewBegin != pViewEnd;++pViewBegin)
- aTables.erase(::std::remove_if(aTables.begin(),aTables.end(),::std::not1(::std::bind2nd(aEqualFunctor,*pViewBegin))));
+ aTables.erase(::std::remove_if(aTables.begin(),aTables.end(),::std::bind2nd(aEqualFunctor,*pViewBegin)));
sTables = Sequence< ::rtl::OUString>(aTables.begin(),aTables.size());
sViews = Sequence< ::rtl::OUString>();
}