aboutsummaryrefslogtreecommitdiffhomepage
path: root/macosx/PlatMacOSX.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2007-07-07 02:54:22 +0000
committernyamatongwe <devnull@localhost>2007-07-07 02:54:22 +0000
commit3f2f73d410c84aa74ec109085e51e3338b6b532b (patch)
tree7681b30a848dc22928a9a8c6fb1b1e71ea2c51fc /macosx/PlatMacOSX.cxx
parent4747b6df30d5d411aafa631fa4436bce0acddfb6 (diff)
downloadscintilla-mirror-3f2f73d410c84aa74ec109085e51e3338b6b532b.tar.gz
Allows the popup to be displayed below as long as it can fit on the monitor
the cursor is on rather than flipping up above the current point when near bottom of window. Implemented for GTK+ by John Ehresman. Partial Windows implementation #ifdefed out because it uses calls unavailable on Windows 95.
Diffstat (limited to 'macosx/PlatMacOSX.cxx')
-rw-r--r--macosx/PlatMacOSX.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/macosx/PlatMacOSX.cxx b/macosx/PlatMacOSX.cxx
index dc80d7036..631e0d95e 100644
--- a/macosx/PlatMacOSX.cxx
+++ b/macosx/PlatMacOSX.cxx
@@ -1059,6 +1059,10 @@ void Window::SetTitle(const char *s) {
CFRelease(title);
}
+PRectangle Window::GetMonitorRect(Point) {
+ return PRectangle();
+}
+
ListBox::ListBox() {}
ListBox::~ListBox() {}