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. using System;
  2. using Gtk;
  3.  
  4. namespace Dizzy
  5. {
  6.  
  7. class MainClass
  8. {
  9.  
  10. public static void Main (string[] args)
  11. {
  12. Application.Init ();
  13.  
  14. // Cosa vogliamo fare
  15. MainWindow win;
  16.  
  17. win = new MainWindow ();
  18. win.ShowAll ();
  19. Log.Info ("Starting application");
  20. Application.Run ();
  21.  
  22. }
  23. }
  24. }