kits: Only export private dummy copy constructors for R5 ABI.
Fixes #546 (after all these years!)
This commit is contained in:
@@ -291,6 +291,7 @@ BApplication::BApplication(BMessage* data)
|
||||
}
|
||||
|
||||
|
||||
#ifdef _BEOS_R5_COMPATIBLE_
|
||||
BApplication::BApplication(uint32 signature)
|
||||
{
|
||||
}
|
||||
@@ -301,6 +302,14 @@ BApplication::BApplication(const BApplication &rhs)
|
||||
}
|
||||
|
||||
|
||||
BApplication&
|
||||
BApplication::operator=(const BApplication &rhs)
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
BApplication::~BApplication()
|
||||
{
|
||||
Lock();
|
||||
@@ -340,13 +349,6 @@ BApplication::~BApplication()
|
||||
}
|
||||
|
||||
|
||||
BApplication&
|
||||
BApplication::operator=(const BApplication &rhs)
|
||||
{
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
BApplication::_InitData(const char* signature, bool initGUI, status_t* _error)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user