Browse Source

* Update C++ bindings after cucul_set_dither_mode() deprecation.

tags/v0.99.beta14
Sam Hocevar sam 17 years ago
parent
commit
1f1ac04df3
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      cxx/cucul++.cpp

+ 2
- 2
cxx/cucul++.cpp View File

@@ -355,12 +355,12 @@ char const *const * Dither::getCharsetList()

void Dither::setMode(char const *cv)
{
cucul_set_dither_mode(dither, cv);
cucul_set_dither_algorithm(dither, cv);
}

char const *const * Dither::getModeList(void)
{
return cucul_get_dither_mode_list(dither);
return cucul_get_dither_algorithm_list(dither);
}

void Dither::Bitmap(Cucul *cv, int x, int y, int w, int h, void *v)


Loading…
Cancel
Save