make Window::SetColor protected as it doesn't respect stacked colors

it should only be used internally by Window and derives.
This commit is contained in:
Andrzej Rybczak
2009-09-06 12:51:48 +02:00
parent 3aa0f6a03b
commit 56be1cb753
3 changed files with 9 additions and 9 deletions

View File

@@ -117,7 +117,6 @@ namespace NCurses
bool hasCoords(int &, int &);
void SetGetStringHelper(GetStringHelper helper) { itsGetStringHelper = helper; }
void SetColor(Color, Color = clDefault);
void SetBaseColor(Color, Color = clDefault);
void SetBorder(Border);
void SetTimeout(int);
@@ -172,6 +171,7 @@ namespace NCurses
void Bold(bool) const;
void Reverse(bool) const;
void AltCharset(bool) const;
void SetColor(Color, Color = clDefault);
void ShowBorder() const;
void AdjustDimensions(size_t &, size_t &);