coding style

This commit is contained in:
Markus Stoll 2014-07-20 11:14:30 +02:00
parent 3c54482248
commit e6109545fb

View file

@ -88,11 +88,11 @@ namespace SparkleShare {
#endif
}
static void OnUnhandledException(object sender, UnhandledExceptionEventArgs exceptionArgs)
static void OnUnhandledException(object sender, UnhandledExceptionEventArgs exception_args)
{
try
{
var e = (Exception)exceptionArgs.ExceptionObject;
var e = (Exception)exception_args.ExceptionObject;
SparkleLogger.WriteCrashReport(e);
}
finally