blob: caa7ed5ad40171ad13e001f74b84b50e13d6e9a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
%modules = ( # path to module name map
"QtTools" => "$basedir/src/global",
"QtHelp" => "$basedir/src/assistant/help",
"QtUiTools" => "$basedir/src/uitools",
"QtUiPlugin" => "$basedir/src/uiplugin",
"QtDesigner" => "$basedir/src/designer/src/lib",
"QtDesignerComponents" => "$basedir/src/designer/src/components/lib",
);
%moduleheaders = ( # restrict the module headers to those found in relative path
);
%classnames = (
);
%deprecatedheaders = (
"QtDesigner" => {
"customwidget.h" => "QtUiPlugin/customwidget.h",
"QDesignerCustomWidgetInterface" => "QtUiPlugin/QDesignerCustomWidgetInterface",
"QDesignerCustomWidgetCollectionInterface" => "QtUiPlugin/QDesignerCustomWidgetCollectionInterface",
"qdesignerexportwidget.h" => "QtUiPlugin/qdesignerexportwidget.h",
"QDesignerExportWidget" => "QtUiPlugin/QDesignerExportWidget"
}
);
|