1
0
Fork 0

PluginObject.preferences() added.

This commit is contained in:
Kolan Sh 2018-04-26 16:38:55 +03:00
parent d0f518049f
commit 75f8ecc06e
1 changed files with 8 additions and 0 deletions

View File

@ -84,6 +84,14 @@ namespace LAview.Core.Plugins {
return object_dialog.composed;
}
/**
* Open Preferences.
*/
public override void preferences (Object parent) throws Error {
// TODO: Open Preferences window.
stdout.puts("Object Example preferences () called.\n");
}
}
}