diff --git a/dbaccess/source/ui/inc/paramdialog.hxx b/dbaccess/source/ui/inc/paramdialog.hxx index e865362cf52f..6d08d798c9b8 100644 --- a/dbaccess/source/ui/inc/paramdialog.hxx +++ b/dbaccess/source/ui/inc/paramdialog.hxx @@ -4,9 +4,9 @@ * * $RCSfile: paramdialog.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: rt $ $Date: 2005-09-08 15:59:49 $ + * last change: $Author: hr $ $Date: 2006-06-20 03:18:14 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -36,6 +36,10 @@ #ifndef _DBAUI_PARAMDIALOG_HXX_ #define _DBAUI_PARAMDIALOG_HXX_ +#ifndef _DBAUI_COMMON_TYPES_HXX_ +#include "commontypes.hxx" +#endif + #ifndef _DIALOG_HXX #include #endif @@ -115,9 +119,7 @@ namespace dbaui ::dbtools::OPredicateInputController m_aPredicateInput; - void* m_pVisitedParams; - // this is a vector of BOOLs, but as this file is exported we don't want to include the stl here ... - // TODO: now that we migrated the dialog and do not export the file anymore, give it a better implementation ... + ByteVector m_aVisitedParams; Timer m_aResetVisitFlag; // we reset the "visited flag" 1 second after and entry has been selected diff --git a/dbaccess/source/ui/inc/sbamultiplex.hxx b/dbaccess/source/ui/inc/sbamultiplex.hxx index 8a4f0cba768f..98a8e04f0aff 100644 --- a/dbaccess/source/ui/inc/sbamultiplex.hxx +++ b/dbaccess/source/ui/inc/sbamultiplex.hxx @@ -4,9 +4,9 @@ * * $RCSfile: sbamultiplex.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: rt $ $Date: 2005-09-08 16:02:45 $ + * last change: $Author: hr $ $Date: 2006-06-20 03:18:48 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -167,9 +167,9 @@ namespace dbaui #define IMPLEMENT_LISTENER_MULTIPLEXER_CORE(classname, listenerclass) \ \ /*................................................................*/ \ - classname::classname(::cppu::OWeakObject& rSource, ::osl::Mutex& rMutex) \ + classname::classname(::cppu::OWeakObject& rSource, ::osl::Mutex& _rMutex) \ :OSbaWeakSubObject(rSource) \ - ,OInterfaceContainerHelper(rMutex) \ + ,OInterfaceContainerHelper(_rMutex) \ { \ } \ \