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 AuthDialog : Gtk.Dialog
  9. {
  10. GlobalConfig config;
  11.  
  12. protected virtual void OnOkClicked (object sender, System.EventArgs e)
  13. {
  14. this.config.password = passwordEntry.Text;
  15. this.config.InsertValue("user", userEntry.Text);
  16. }
  17.  
  18. public AuthDialog (ref GlobalConfig config)
  19. {
  20. this.config = config;
  21. this.Build ();
  22. }
  23. }
  24. }