Skip to content

Commit

Permalink
Replace QPair with std::pair
Browse files Browse the repository at this point in the history
  • Loading branch information
gfgit committed Feb 9, 2024
1 parent 78a3f96 commit c58bd1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions panel/panelpluginsmodel.h
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public slots:
*
* \sa mPlugins
*/
typedef QList<QPair <QString/*name*/, QPointer<Plugin> > > pluginslist_t;
typedef QList<std::pair <QString/*name*/, QPointer<Plugin> > > pluginslist_t;

private:
/*!
Expand Down Expand Up @@ -320,7 +320,7 @@ public slots:
* \brief mPlugins Stores all the Plugins.
*
* mPlugins is a QList of elements while each element corresponds to a
* single Plugin. Each element is a QPair of a QString and a QPointer
* single Plugin. Each element is a std::pair of a QString and a QPointer
* while the QPointer points to a Plugin.
*
* To access the elements, you can use indexing or an iterator on the
Expand Down

0 comments on commit c58bd1d

Please sign in to comment.