diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-11-26 12:58:31 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-01-09 13:44:24 +0100 |
commit | bcfd016c88f2da271fc77da608b42d2f5bd83448 (patch) | |
tree | cf5a413ccfb8befd4bf5f1c2485230c23ad63d86 /vcl/win | |
parent | 4eae9d19cce5356d536ae509861a5c95f65aea4a (diff) |
some notes about COM threading in LO generally and winaccessibility
- document general COM threading architecture in vcl README
- document winaccessiblitiy locking in README
- define _ATL_APARTMENT_THREADED for UAccCOM
Change-Id: I7c3fd952f2cdee7d245a818bf33c477e7ea20fc2
Diffstat (limited to 'vcl/win')
-rw-r--r-- | vcl/win/source/app/salinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/source/app/salinst.cxx b/vcl/win/source/app/salinst.cxx index 1c5e7e74a8d8..316c5443df95 100644 --- a/vcl/win/source/app/salinst.cxx +++ b/vcl/win/source/app/salinst.cxx @@ -446,7 +446,7 @@ SalData::~SalData() void InitSalData() { SalData* pSalData = new SalData; - CoInitialize(0); + CoInitialize(0); // put main thread in Single Threaded Apartment (STA) // init GDIPlus static Gdiplus::GdiplusStartupInput gdiplusStartupInput; |