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 /parts/astyle | |
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 'parts/astyle')
-rw-r--r-- | parts/astyle/astyle_part.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/parts/astyle/astyle_part.cpp b/parts/astyle/astyle_part.cpp index f5b5e2e7..6f9198b0 100644 --- a/parts/astyle/astyle_part.cpp +++ b/parts/astyle/astyle_part.cpp @@ -33,7 +33,7 @@ #include "astyle_widget.h" #include "astyle_adaptor.h" -static const KDevPluginInfo data("kdevastyle"); +static const KDevPluginInfo pluginData("kdevastyle"); namespace { const char* defaultFormatExtensions = "*.cpp *.h *.hpp,*.c *.h,*.cxx *.hxx,*.c++ *.h++,*.cc *.hh,*.C *.H,*.diff ,*.inl,*.java,*.moc,*.patch,*.tlh,*.xpm"; @@ -41,10 +41,10 @@ namespace { typedef KDevGenericFactory<AStylePart> AStyleFactory; -K_EXPORT_COMPONENT_FACTORY( libkdevastyle, AStyleFactory( data ) ) +K_EXPORT_COMPONENT_FACTORY( libkdevastyle, AStyleFactory( pluginData ) ) AStylePart::AStylePart(TQObject *parent, const char *name, const TQStringList &) - : KDevSourceFormatter(&data, parent, name ? name : "AStylePart") + : KDevSourceFormatter(&pluginData, parent, name ? name : "AStylePart") { setInstance(AStyleFactory::instance()); |