diff options
Diffstat (limited to 'src/gui/editors/notation/FontViewFrame.cpp')
-rw-r--r-- | src/gui/editors/notation/FontViewFrame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/editors/notation/FontViewFrame.cpp b/src/gui/editors/notation/FontViewFrame.cpp index b140775..e78e44f 100644 --- a/src/gui/editors/notation/FontViewFrame.cpp +++ b/src/gui/editors/notation/FontViewFrame.cpp @@ -231,7 +231,7 @@ FontViewFrame::hasRow(int r) const for (int c = 0; c < 256; ++c) { FcChar32 ch = r * 256 + c; - if (XftCharExists(TQT_TQPAINTDEVICE_CONST(this)->x11AppDisplay(), (XftFont *)m_tableFont, ch)) { + if (XftCharExists(x11AppDisplay(), (XftFont *)m_tableFont, ch)) { return true; } } |