Skip to content

Commit 42c21c1

Browse files
committedApr 26, 2023
Add window title
1 parent 2e0ce59 commit 42c21c1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/gui/processing/qgsprocessinghistorywidget.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
#include "qgshistorywidget.h"
1818
#include "qgsgui.h"
1919
#include "qgshistoryproviderregistry.h"
20-
#include "qgshistoryprovider.h"
2120
#include "qgshelp.h"
2221
#include "qgsfileutils.h"
2322
#include "qgshistoryentry.h"
@@ -97,6 +96,8 @@ QgsProcessingHistoryDialog::QgsProcessingHistoryDialog( QWidget *parent )
9796
setObjectName( QStringLiteral( "QgsProcessingHistoryDialog" ) );
9897
QgsGui::instance()->enableAutoGeometryRestore( this );
9998

99+
setWindowTitle( tr( "Processing History" ) );
100+
100101
QVBoxLayout *vl = new QVBoxLayout();
101102
mWidget = new QgsProcessingHistoryWidget();
102103
vl->addWidget( mWidget, 1 );

0 commit comments

Comments
 (0)
Please sign in to comment.