Skip to content

Commit

Permalink
fix 67f7b3a
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jul 20, 2017
1 parent 67f7b3a commit f78157b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/qgscrashdialog.cpp
Expand Up @@ -66,7 +66,7 @@ QString QgsCrashDialog::htmlToMarkdown( const QString &html )
markdown.replace( "<br>", "\n" );
markdown.replace( "<b>", "*" );
markdown.replace( "</b>", "*" );
markdown.replace( "QGIS code revision: ", "QGIS code revision: commit:");
markdown.replace( "QGIS code revision: ", "QGIS code revision: commit:" );
return markdown;
}

4 changes: 2 additions & 2 deletions src/core/qgsstacktrace.cpp
Expand Up @@ -54,10 +54,10 @@ QVector<QgsStackTrace::StackLine> QgsStackTrace::trace( _EXCEPTION_POINTERS *Exc
// StackWalk64() may modify context record passed to it, so we will
// use a copy.
CONTEXT context_record;
if (ExceptionInfo)
if ( ExceptionInfo )
context_record = *ExceptionInfo->ContextRecord;
else
RtlCaptureContext(&context_record);
RtlCaptureContext( &context_record );

// Initialize stack walking.
STACKFRAME64 stack_frame;
Expand Down

0 comments on commit f78157b

Please sign in to comment.