diff options
author | François Andriot <[email protected]> | 2021-02-28 00:15:56 +0000 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-05-12 22:27:27 +0200 |
commit | ba5f58bf38a62eb83990951168951274c96a8e24 (patch) | |
tree | 6eee557d0117e4f5667cef37f9cc5acc5b084c21 /buildtools/custommakefiles | |
parent | 34649195bfef57a2d3f4d34bcfbf2d4252dac465 (diff) | |
download | tdevelop-ba5f58bf38a62eb83990951168951274c96a8e24.tar.gz tdevelop-ba5f58bf38a62eb83990951168951274c96a8e24.zip |
Fix ftbfs on Fedora 34
error: reference to ‘data’ is ambiguous
Signed-off-by: François Andriot <[email protected]>
Diffstat (limited to 'buildtools/custommakefiles')
-rw-r--r-- | buildtools/custommakefiles/customprojectpart.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/buildtools/custommakefiles/customprojectpart.cpp b/buildtools/custommakefiles/customprojectpart.cpp index f61782ae..cbbb4315 100644 --- a/buildtools/custommakefiles/customprojectpart.cpp +++ b/buildtools/custommakefiles/customprojectpart.cpp @@ -62,11 +62,11 @@ #include <kdevplugininfo.h> typedef KDevGenericFactory<CustomProjectPart> CustomProjectFactory; -static const KDevPluginInfo data( "kdevcustomproject" ); -K_EXPORT_COMPONENT_FACTORY( libkdevcustomproject, CustomProjectFactory( data ) ) +static const KDevPluginInfo pluginData( "kdevcustomproject" ); +K_EXPORT_COMPONENT_FACTORY( libkdevcustomproject, CustomProjectFactory( pluginData ) ) CustomProjectPart::CustomProjectPart( TQObject *parent, const char *name, const TQStringList & ) - : KDevBuildTool( &data, parent, name ? name : "CustomProjectPart" ) + : KDevBuildTool( &pluginData, parent, name ? name : "CustomProjectPart" ) , m_lastCompilationFailed( false ), m_recursive( false ), m_first_recursive( false ) { setInstance( CustomProjectFactory::instance() ); |