Document domain parameter of wxTranslations::GetTranslatedString().
[wxWidgets.git] / src / cocoa / dcscreen.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/cocoa/dcscreen.cpp
3 // Purpose: wxScreenDCImpl class
4 // Author: David Elliott
5 // Modified by:
6 // Created: 2003/03/16
7 // Copyright: (c) 2002 David Elliott
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #include "wx/wxprec.h"
12
13 #include "wx/cocoa/dcscreen.h"
14
15 #ifndef WX_PRECOMP
16 #endif //WX_PRECOMP
17
18 //-----------------------------------------------------------------------------
19 // wxMemoryDC
20 //-----------------------------------------------------------------------------
21
22 IMPLEMENT_ABSTRACT_CLASS(wxScreenDCImpl,wxCocoaDCImpl)
23
24 wxScreenDCImpl::wxScreenDCImpl(wxScreenDC *owner)
25 : wxCocoaDCImpl(owner)
26 {
27 m_ok = false;
28 }
29
30 wxScreenDCImpl::wxScreenDCImpl(wxScreenDC *owner, wxDC *WXUNUSED(dc) )
31 : wxCocoaDCImpl(owner)
32 {
33 m_ok = false;
34 }
35
36 wxScreenDCImpl::~wxScreenDCImpl(void)
37 {
38 }