viewgit/index.php:465 Only variables should be passed by reference [2048]

viewgit/index.php:466 Non-static method GeSHi::get_language_name_from_extension() should not be called statically [2048]

  1.  
  2. using System;
  3.  
  4. namespace Dizzy
  5. {
  6.  
  7.  
  8. public partial class DizzyErrorDialog : Gtk.MessageDialog
  9. {
  10.  
  11. public DizzyErrorDialog (Gtk.Window parent_window, string markup) : base(parent_window,
  12. Gtk.DialogFlags.Modal,
  13. Gtk.MessageType.Error,
  14. Gtk.ButtonsType.Ok,
  15. true,
  16. "")
  17.  
  18. {
  19. this.Build ();
  20. this.Markup = markup;
  21. }
  22. }
  23. }