Skip to content

Commit b74aefd

Browse files
committedJan 10, 2017
move QgsHelp to gui
1 parent 91a96d1 commit b74aefd

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed
 

‎python/core/core.sip

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
%Include qgsgeometryvalidator.sip
6666
%Include qgsgml.sip
6767
%Include qgsgmlschema.sip
68-
%Include qgshelp.sip
6968
%Include qgshistogram.sip
7069
%Include qgsinterval.sip
7170
%Include qgsjsonutils.sip

‎python/gui/gui.sip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
%Include qgsgradientcolorrampdialog.sip
8989
%Include qgsgradientstopeditor.sip
9090
%Include qgsgroupwmsdatadialog.sip
91+
%Include qgshelp.sip
9192
%Include qgshighlight.sip
9293
%Include qgshistogramwidget.sip
9394
%Include qgshtmlannotationitem.sip

‎python/core/qgshelp.sip renamed to ‎python/gui/qgshelp.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** \ingroup core
1+
/** \ingroup gui
22
* \class QgsHelp
33
* @brief Helper class for showing help topic URI for the given key.
44
*

‎src/core/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ SET(QGIS_CORE_SRCS
135135
qgsgeometryvalidator.cpp
136136
qgsgml.cpp
137137
qgsgmlschema.cpp
138-
qgshelp.cpp
139138
qgshistogram.cpp
140139
qgsinterval.cpp
141140
qgsjsonutils.cpp
@@ -674,7 +673,6 @@ SET(QGIS_CORE_HDRS
674673
qgsfields.h
675674
qgsfontutils.h
676675
qgsgeometrycache.h
677-
qgshelp.h
678676
qgshistogram.h
679677
qgsindexedfeature.h
680678
qgsinterval.h

‎src/gui/CMakeLists.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ SET(QGIS_GUI_SRCS
237237
qgsgroupwmsdatadialog.cpp
238238
qgshighlight.cpp
239239
qgshistogramwidget.cpp
240+
qgshelp.cpp
240241
qgshtmlannotationitem.cpp
241242
qgsidentifymenu.cpp
242243
qgskeyvaluewidget.cpp
@@ -303,7 +304,7 @@ SET(QGIS_GUI_SRCS
303304
qgsshortcutsmanager.cpp
304305
qgsslider.cpp
305306
qgssublayersdialog.cpp
306-
qgssubstitutionlistwidget.cpp
307+
qgssubstitutionlistwidget.cpp
307308
qgssqlcomposerdialog.cpp
308309
qgssvgannotationitem.cpp
309310
qgstablewidgetbase.cpp
@@ -503,7 +504,7 @@ SET(QGIS_GUI_MOC_HDRS
503504
symbology-ng/qgslayerpropertieswidget.h
504505
symbology-ng/qgsnullsymbolrendererwidget.h
505506
symbology-ng/qgspenstylecombobox.h
506-
symbology-ng/qgspointclusterrendererwidget.h
507+
symbology-ng/qgspointclusterrendererwidget.h
507508
symbology-ng/qgspointdisplacementrendererwidget.h
508509
symbology-ng/qgsrendererpropertiesdialog.h
509510
symbology-ng/qgsrendererwidget.h
@@ -651,6 +652,7 @@ SET(QGIS_GUI_HDRS
651652
qgsdetaileditemdata.h
652653
qgsexpressionbuilderdialog.h
653654
qgsfiledropedit.h
655+
qgshelp.h
654656
qgshighlight.h
655657
qgsmapcanvasitem.h
656658
qgsmapcanvasmap.h
@@ -718,7 +720,7 @@ SET(QGIS_GUI_HDRS
718720
layertree/qgslayertreeembeddedwidgetregistry.h
719721

720722
raster/qgsrasterrendererwidget.h
721-
723+
722724
symbology-ng/qgssymbolwidgetcontext.h
723725
)
724726

File renamed without changes.

‎src/core/qgshelp.h renamed to ‎src/gui/qgshelp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include <QtCore>
2020

21-
/** \ingroup core
21+
/** \ingroup gui
2222
* \class QgsHelp
2323
* @brief Helper class for showing help topic URI for the given key.
2424
*
@@ -36,7 +36,7 @@
3636
*
3737
* @note added in QGIS 3.0
3838
*/
39-
class CORE_EXPORT QgsHelp
39+
class GUI_EXPORT QgsHelp
4040
{
4141
public:
4242

0 commit comments

Comments
 (0)
Please sign in to comment.