diff options
Diffstat (limited to 'tdehtml/misc/makeattrs')
-rw-r--r-- | tdehtml/misc/makeattrs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdehtml/misc/makeattrs b/tdehtml/misc/makeattrs index 935f350bd..1ed890c2c 100644 --- a/tdehtml/misc/makeattrs +++ b/tdehtml/misc/makeattrs @@ -67,7 +67,7 @@ print header "#define ATTR_LAST_CI_ATTR $last_ci_attr\n"; print out "%%\n"; close out; -print header "const char* getAttrName(unsigned short id) KDE_NO_EXPORT;\n"; +print header "const char* getAttrName(unsigned short id) TDE_NO_EXPORT;\n"; print header "\n#endif\n"; close header; @@ -103,7 +103,7 @@ while(defined ($line = shift @a)) print OUT " " .$hmap{$amap{$l}}.",\n"; } print OUT " 65535\n};\n\n"; -print OUT "const char* KDE_NO_EXPORT getAttrName(unsigned short id)\n{\n"; +print OUT "const char* TDE_NO_EXPORT getAttrName(unsigned short id)\n{\n"; print OUT " if (!id || id > TOTAL_KEYWORDS) return \"\";\n"; print OUT " return spool_attr + wordlist_attr[attrList[id]].name;\n"; print OUT "}\n"; |