diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-04-13 22:42:31 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-04-13 22:42:31 +0000 |
| commit | e17c54e3f80458c0c85133e877371a55f460e3e7 (patch) | |
| tree | bfaa327af30fcaac826ac2a4a123db159db29487 /src/Image.cc | |
| parent | b7fa41a30b2e3271c4489a780c24ea82597ea18d (diff) | |
removed all Xrm database calls from Screen.cc (style loading).
This completes the conversion to using the obResource class, there are no class to Xrm* except in Resource.cc/h
Diffstat (limited to 'src/Image.cc')
| -rw-r--r-- | src/Image.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Image.cc b/src/Image.cc index d42d1d12..97f2b342 100644 --- a/src/Image.cc +++ b/src/Image.cc @@ -2343,7 +2343,7 @@ unsigned long BImageControl::getSqrt(unsigned int x) { } -void BImageControl::parseTexture(BTexture *texture, char *t) { +void BImageControl::parseTexture(BTexture *texture, const char *t) { if ((! texture) || (! t)) return; int t_len = strlen(t) + 1, i; @@ -2409,7 +2409,7 @@ void BImageControl::parseTexture(BTexture *texture, char *t) { } -void BImageControl::parseColor(BColor *color, char *c) { +void BImageControl::parseColor(BColor *color, const char *c) { if (! color) return; if (color->isAllocated()) { |
