init the vals
svn path=/trunk/KDE/kdelibs/; revision=1150411
This commit is contained in:
parent
a6155e5659
commit
4a9bf348fe
@ -32,7 +32,10 @@ class DataContainerPrivate
|
||||
{
|
||||
public:
|
||||
DataContainerPrivate()
|
||||
: dirty(false), cached(false)
|
||||
: dirty(false),
|
||||
cached(false),
|
||||
enableStorage(false),
|
||||
isStored(false)
|
||||
{}
|
||||
|
||||
SignalRelay *signalRelay(const DataContainer *dc, QObject *visualization,
|
||||
@ -47,8 +50,8 @@ public:
|
||||
QTime updateTs;
|
||||
bool dirty : 1;
|
||||
bool cached : 1;
|
||||
bool enableStorage;
|
||||
bool isStored;
|
||||
bool enableStorage : 1;
|
||||
bool isStored : 1;
|
||||
};
|
||||
|
||||
class SignalRelay : public QObject
|
||||
|
Loading…
Reference in New Issue
Block a user