mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-13 03:32:24 +00:00
On Linux initialise tt_strings as () rather than (NULL)
This commit is contained in:
parent
b195aa51c8
commit
5948300301
1 changed files with 6 additions and 0 deletions
|
@ -118,9 +118,15 @@ base_constructor()
|
|||
|
||||
_Tt_message::
|
||||
_Tt_message()
|
||||
#if defined(linux)
|
||||
: _pattern_id(), _object(), _file(), _op(),
|
||||
_otype(), _sender_ptype(), _handler_ptype(),
|
||||
_api_id(), _status_string()
|
||||
#else
|
||||
: _pattern_id(NULL), _object(NULL), _file(NULL), _op(NULL),
|
||||
_otype(NULL), _sender_ptype(NULL), _handler_ptype(NULL),
|
||||
_api_id(NULL), _status_string(NULL)
|
||||
#endif
|
||||
{
|
||||
base_constructor();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue