mirror of
https://github.com/itay-grudev/SingleApplication.git
synced 2024-11-15 12:15:43 +08:00
v3.0.14
This commit is contained in:
parent
b24d5394a5
commit
adac9a30aa
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
/examples/*/*.o
|
||||||
|
/examples/*/Makefile
|
||||||
|
/examples/*/moc_*.cpp
|
||||||
|
/examples/*/moc_predefs.h
|
||||||
|
/examples/*/*.qmake.stash
|
||||||
|
/examples/basic/basic
|
||||||
|
/examples/calculator/calculator
|
||||||
|
/examples/sending_arguments/sending_arguments
|
@ -1,6 +1,11 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
__3.0.14__
|
||||||
|
----------
|
||||||
|
|
||||||
|
* Fixed uninitialised variables in the `SingleApplicationPrivate` constructor.
|
||||||
|
|
||||||
__3.0.13a__
|
__3.0.13a__
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
@ -55,6 +55,8 @@ SingleApplicationPrivate::SingleApplicationPrivate( SingleApplication *q_ptr )
|
|||||||
{
|
{
|
||||||
server = nullptr;
|
server = nullptr;
|
||||||
socket = nullptr;
|
socket = nullptr;
|
||||||
|
memory = nullptr;
|
||||||
|
instanceNumber = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
SingleApplicationPrivate::~SingleApplicationPrivate()
|
SingleApplicationPrivate::~SingleApplicationPrivate()
|
||||||
|
Loading…
Reference in New Issue
Block a user