From 2f69e16c723aab48ad59d17397d8946ec0a48138 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Thu, 8 Jan 2015 23:08:34 +0100 Subject: override the overloading of "overload" to decrease cognitive (over-)load Change-Id: I4d0e1de89d0bbdbea23bc5a46bf75ae0ce4e2796 --- .../DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java | 6 +++--- .../DevelopersGuide/OfficeDev/Linguistic/PropChgHelper.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'odk/examples/DevelopersGuide/OfficeDev') diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java index 63fc3cd8392c..efd057f8d189 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java @@ -56,7 +56,7 @@ public class NativeView extends java.awt.Canvas * ctor * Does nothing really. * We can use our JNI mechanism for an already visible - * canvas only. So we overload the method for showing ("setVisible()") + * canvas only. So we override the method for showing ("setVisible()") * and make our intialization there. BUt we try to show an empty clean * window till there. */ @@ -70,7 +70,7 @@ public class NativeView extends java.awt.Canvas /** - * Overload this method to make necessary initializations here. + * Override this method to make necessary initializations here. * (e.g. get the window handle and necessary system information) * * Why here? @@ -113,7 +113,7 @@ public class NativeView extends java.awt.Canvas /** - * overload paint routine to show provide against + * Override paint routine to show provide against * repaint errors if no office view is really plugged * into this canvas. * If handle is present - we shouldn't paint anything further. diff --git a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper.java b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper.java index bc29513e73fe..521c9e08e512 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper.java +++ b/odk/examples/DevelopersGuide/OfficeDev/Linguistic/PropChgHelper.java @@ -153,7 +153,7 @@ public class PropChgHelper implements public void propertyChange( PropertyChangeEvent aEvt ) throws com.sun.star.uno.RuntimeException { - // will be overloaded in derived classes + // will be overridden in derived classes } -- cgit