/trunk/Scribus/scribus/prefscontext.cpp |
---|
27,17 → 27,10 |
#include "prefscontext.h" |
#include "scclocale.h" |
PrefsContext::PrefsContext() |
: m_isPersistent(false), |
m_isPlugin(false) |
{ |
} |
PrefsContext::PrefsContext(const QString& contextName, bool persistent, bool plugin) |
: m_name(contextName), |
m_isPersistent(persistent), |
m_isPlugin(plugin) |
m_isPlugin(plugin), |
m_isPersistent(persistent) |
{ |
} |
/trunk/Scribus/scribus/prefscontext.h |
---|
40,7 → 40,7 |
class SCRIBUS_API PrefsContext |
{ |
public: |
PrefsContext(); |
PrefsContext() = default; |
PrefsContext(const QString& contextName, bool persistent = true, bool plugin = false); |
~PrefsContext(); |