summaryrefslogtreecommitdiffstats
path: root/khtml/css/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'khtml/css/parser.y')
-rw-r--r--khtml/css/parser.y8
1 files changed, 4 insertions, 4 deletions
diff --git a/khtml/css/parser.y b/khtml/css/parser.y
index 50e558db9..88df3cceb 100644
--- a/khtml/css/parser.y
+++ b/khtml/css/parser.y
@@ -45,7 +45,7 @@ using namespace DOM;
//
// The following file defines the function
-// const struct props *findProp(const char *word, int len)
+// const struct props *tqfindProp(const char *word, int len)
//
// with 'props->id' a CSS property in the range from CSS_PROP_MIN to
// (and including) CSS_PROP_TOTAL-1
@@ -59,7 +59,7 @@ using namespace DOM;
int DOM::getPropertyID(const char *tagStr, int len)
{
- const struct props *propsPtr = findProp(tagStr, len);
+ const struct props *propsPtr = tqfindProp(tagStr, len);
if (!propsPtr)
return 0;
@@ -68,7 +68,7 @@ int DOM::getPropertyID(const char *tagStr, int len)
static inline int getValueID(const char *tagStr, int len)
{
- const struct css_value *val = findValue(tagStr, len);
+ const struct css_value *val = tqfindValue(tagStr, len);
if (!val)
return 0;
@@ -808,7 +808,7 @@ pseudo:
$$->string_arg = domString($3);
$$->value = domString($2);
}
- // used by :contains
+ // used by :tqcontains
| ':' FUNCTION STRING ')' {
$$ = new CSSSelector();
$$->match = CSSSelector::PseudoClass;