aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--doc/ScintillaRelated.html14
-rw-r--r--gtk/PlatGTK.cxx3
2 files changed, 16 insertions, 1 deletions
diff --git a/doc/ScintillaRelated.html b/doc/ScintillaRelated.html
index d67789e27..9f81b9279 100644
--- a/doc/ScintillaRelated.html
+++ b/doc/ScintillaRelated.html
@@ -123,6 +123,20 @@
Projects using Scintilla
</h3>
<p>
+ <a href="http://www.applepanic.com/front/reportbuilder">ReportBuilder Primary</a>
+ is designed to reduce the time to compose detailed and professional primary school reports.
+ </p>
+ <p>
+ <a href="http://stepaheadsoftware.com/products/vcw/vcw.htm">Visual Classworks</a>
+ Visual class modeling and coding in C++ via 'live'
+ UML style class diagrams.
+ </p>
+ <p>
+ <a href="http://stepaheadsoftware.com/products/javelin/javelin.htm">Javelin</a>
+ Visual Class modeling and coding in Java via 'live' UML style
+ class diagrams.
+ </p>
+ <p>
The <a href="http://www.adobe.com/devnet/bridge/">ExtendScript Toolkit</a>
is a development and debugging tool for JavaScript
scripts included with Adobe CS3 Suites.
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx
index 4a7b2ed8d..aaee173d7 100644
--- a/gtk/PlatGTK.cxx
+++ b/gtk/PlatGTK.cxx
@@ -1874,10 +1874,11 @@ void Window::SetTitle(const char *s) {
gtk_window_set_title(GTK_WINDOW(id), s);
}
-/* Returns rectangle of monitor pt is on, both rect and pt are in Window's
+/* Returns rectangle of monitor pt is on, both rect and pt are in Window's
gdk window coordinates */
PRectangle Window::GetMonitorRect(Point pt) {
gint x_offset, y_offset;
+ pt = pt;
gdk_window_get_origin(PWidget(id)->window, &x_offset, &y_offset);