Guest User

Untitled

a guest
Feb 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. plugins$ gedit
  2. Gtk-Message: Failed to load module "canberra-gtk-module"
  3. GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications.
  4. ** (gedit:14703): DEBUG: plugin.vala:43: config constructed (gobject style)
  5. ** (gedit:14703): DEBUG: plugin.vala:47: config create widget
  6.  
  7. ---------------------------------------------------------------
  8.  
  9. public class ValaPluginConfig : Peas.ExtensionBase, PeasGtk.Configurable {
  10. public ValaPluginConfig () {
  11. Object ();
  12. GLib.debug ("config constructed");
  13. }
  14.  
  15. construct
  16. {
  17. GLib.debug ("config constructed (gobject style)");
  18. }
  19.  
  20.  
  21. public Gtk.Widget create_configure_widget () {
  22. string text = "This is a configuration dialog for the ValaHello plugin.";
  23. GLib.debug ("config create widget");
  24. return new Gtk.Label (text);
  25. }
  26. }
Add Comment
Please, Sign In to add comment