You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If we get here, it means that the function doesn't accept three arguments
661
+
QMessageBox msgBox;
662
+
msgBox.setText( tr( "The python init function (<code>%1</code>) does not accept three arguments as expected!<br>Please check the function name in the <b>Fields</b> tab of the layer properties." ).arg( initFunction ) );
QgsLogger::warning( QString( "There was an error evaluating the python init function!" ) );
676
+
// If we get here, it means that inspect couldn't find the function
677
+
QMessageBox msgBox;
678
+
msgBox.setText( tr( "The python init function (<code>%1</code>) could not be found!<br>Please check the function name in the <b>Fields</b> tab of the layer properties." ).arg( initFunction ) );
0 commit comments