forked from qt-creator/qt-creator
Core: Remove deprecated and now unused Core::Id(QString) constructor
Change-Id: I0eff48af98b3fd3ff244386a4424aa9dd0648919 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
@@ -169,14 +169,6 @@ Id::Id(const QByteArray &name)
|
|||||||
: m_id(theId(name))
|
: m_id(theId(name))
|
||||||
{}
|
{}
|
||||||
|
|
||||||
/*!
|
|
||||||
\overload
|
|
||||||
\deprecated
|
|
||||||
*/
|
|
||||||
Id::Id(const QString &name)
|
|
||||||
: m_id(theId(name.toUtf8()))
|
|
||||||
{}
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
Returns an internal representation of the id.
|
Returns an internal representation of the id.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -46,7 +46,6 @@ public:
|
|||||||
Id() : m_id(0) {}
|
Id() : m_id(0) {}
|
||||||
Id(int uid) : m_id(uid) {}
|
Id(int uid) : m_id(uid) {}
|
||||||
Id(const char *name);
|
Id(const char *name);
|
||||||
explicit Id(const QString &name);
|
|
||||||
explicit Id(const QByteArray &name);
|
explicit Id(const QByteArray &name);
|
||||||
|
|
||||||
Id withSuffix(int suffix) const;
|
Id withSuffix(int suffix) const;
|
||||||
|
|||||||
Reference in New Issue
Block a user