You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
/*
|
|
**************************************************************************
|
|
description
|
|
--------------------
|
|
copyright : (C) 2003 by Andreas Zehender
|
|
email : zehender@kde.org
|
|
**************************************************************************
|
|
|
|
**************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
**************************************************************************/
|
|
|
|
#include "pmmessage.h"
|
|
|
|
PMMessage::PMMessage( )
|
|
{
|
|
m_pObject = 0;
|
|
}
|
|
|
|
PMMessage::PMMessage( const TQString& text, PMObject* object )
|
|
{
|
|
m_sText = text;
|
|
m_pObject = object;
|
|
}
|
|
|
|
PMMessage::PMMessage( const PMMessage& m )
|
|
{
|
|
m_sText = m.m_sText;
|
|
m_pObject = m.m_pObject;
|
|
}
|
|
|
|
PMMessage& PMMessage::operator=( const PMMessage& m )
|
|
{
|
|
m_sText = m.m_sText;
|
|
m_pObject = m.m_pObject;
|
|
return *this;
|
|
}
|
|
|