Skip to content

Commit f78157b

Browse files
committedJul 20, 2017
fix 67f7b3a
1 parent 67f7b3a commit f78157b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/app/qgscrashdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ QString QgsCrashDialog::htmlToMarkdown( const QString &html )
6666
markdown.replace( "<br>", "\n" );
6767
markdown.replace( "<b>", "*" );
6868
markdown.replace( "</b>", "*" );
69-
markdown.replace( "QGIS code revision: ", "QGIS code revision: commit:");
69+
markdown.replace( "QGIS code revision: ", "QGIS code revision: commit:" );
7070
return markdown;
7171
}
7272

‎src/core/qgsstacktrace.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ QVector<QgsStackTrace::StackLine> QgsStackTrace::trace( _EXCEPTION_POINTERS *Exc
5454
// StackWalk64() may modify context record passed to it, so we will
5555
// use a copy.
5656
CONTEXT context_record;
57-
if (ExceptionInfo)
57+
if ( ExceptionInfo )
5858
context_record = *ExceptionInfo->ContextRecord;
5959
else
60-
RtlCaptureContext(&context_record);
60+
RtlCaptureContext( &context_record );
6161

6262
// Initialize stack walking.
6363
STACKFRAME64 stack_frame;

0 commit comments

Comments
 (0)
Please sign in to comment.