Motif compile fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2873 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-06-23 10:03:44 +00:00
parent 2d9f55970b
commit da175b2ce4
34 changed files with 521 additions and 272 deletions

View File

@@ -22,6 +22,8 @@
#include "wx/defs.h"
#include "wx/setup.h"
#include "wx/dataobj.h"
#include "wx/list.h"
#include "wx/module.h"
@@ -69,10 +71,15 @@ public:
// clears wxTheClipboard and the system's clipboard if possible
virtual void Clear();
/// If primary == TRUE, use primary selection in all further ops,
/// primary=FALSE resets it.
inline void UsePrimarySelection(bool primary = TRUE) { m_usePrimary = primary; }
// implementation
bool m_open;
wxList m_data;
bool m_usePrimary;
};
/* The clipboard */