window: remove GetXY

This commit is contained in:
Andrzej Rybczak
2012-08-30 06:21:21 +02:00
parent 5989cc6317
commit 0447b4e881
3 changed files with 5 additions and 33 deletions

View File

@@ -264,7 +264,7 @@ namespace NCurses
/// @see CreateHistory()
///
std::string GetString(const std::string &base, size_t length = -1,
size_t width = 0, bool encrypted = 0);
size_t width = 0, bool encrypted = 0);
/// Wrapper for above function that doesn't take base string (it will be empty).
/// Taken parameters are the same as for above.
@@ -274,12 +274,6 @@ namespace NCurses
return GetString("", length, width, encrypted);
}
/// Gets present position of cursor's coordinates
/// @param x variable that will be set to current X position
/// @param y variable that will be set to current Y position
///
void GetXY(int &x, int &y);
/// Moves cursor to given coordinates
/// @param x given X position
/// @param y given Y position
@@ -593,13 +587,6 @@ namespace NCurses
///
GetStringHelper itsGetStringHelper;
/// temporary coordinates
/// @see X()
/// @see Y()
///
int itsX;
int itsY;
/// window title
std::string itsTitle;