Remove dead method Screen::compose(String)

wilder-portage
Jekyll Wu 15 years ago
parent dcab90676b
commit 50a07d79da
  1. 13
      src/Screen.cpp
  2. 5
      src/Screen.h

@ -734,19 +734,6 @@ void Screen::displayCharacter(unsigned short c)
cuX = newCursorX;
}
void Screen::compose(const QString& /*compose*/)
{
Q_ASSERT( 0 /*Not implemented yet*/ );
/* if (lastPos == -1)
return;
QChar c(image[lastPos].character);
compose.prepend(c);
//compose.compose(); ### FIXME!
image[lastPos].character = compose[0].unicode();*/
}
int Screen::scrolledLines() const
{
return _scrolledLines;

@ -347,10 +347,7 @@ public:
* character already at the current cursor position.
*/
void displayCharacter(unsigned short c);
// Do composition with last shown character FIXME: Not implemented yet for KDE 4
void compose(const QString& compose);
/**
* Resizes the image to a new fixed size of @p new_lines by @p new_columns.
* In the case that @p new_columns is smaller than the current number of columns,

Loading…
Cancel
Save