vos:removal: missed a couple of OThread
This commit is contained in:
parent
4b57550386
commit
d217505d16
2 changed files with 4 additions and 5 deletions
|
@ -28,7 +28,7 @@
|
|||
#ifndef _CUI_GALDLG_HXX_
|
||||
#define _CUI_GALDLG_HXX_
|
||||
|
||||
#include <vos/thread.hxx>
|
||||
#include <osl/thread.hxx>
|
||||
#include <vcl/dialog.hxx>
|
||||
#include <vcl/graph.hxx>
|
||||
#include <vcl/fixed.hxx>
|
||||
|
@ -71,7 +71,7 @@ struct FilterEntry
|
|||
// - SearchThread -
|
||||
// ----------------
|
||||
|
||||
class SearchThread : public ::vos::OThread
|
||||
class SearchThread : public ::osl::Thread
|
||||
{
|
||||
private:
|
||||
|
||||
|
@ -128,7 +128,7 @@ public:
|
|||
// - TakeThread -
|
||||
// --------------
|
||||
|
||||
class TakeThread : public ::vos::OThread
|
||||
class TakeThread : public ::osl::Thread
|
||||
{
|
||||
private:
|
||||
|
||||
|
|
|
@ -38,7 +38,6 @@
|
|||
|
||||
#include <osl/thread.hxx>
|
||||
|
||||
using namespace vos;
|
||||
using namespace std;
|
||||
|
||||
namespace ole_adapter
|
||||
|
@ -50,7 +49,7 @@ typedef DECLSPEC_IMPORT HRESULT (STDAPICALLTYPE *ptrCoInit)( LPVOID);
|
|||
|
||||
void o2u_attachCurrentThread()
|
||||
{
|
||||
static OThreadData oleThreadData;
|
||||
static osl::ThreadData oleThreadData;
|
||||
|
||||
if ((sal_Bool)(sal_IntPtr)oleThreadData.getData() != sal_True)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue