We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb5683e commit f1890a8Copy full SHA for f1890a8
rust/src/scriptingprovider.rs
@@ -193,7 +193,7 @@ impl ScriptingInstance {
193
pub fn notify_warning<S: BnStrCompatible>(&self, text: S) {
194
let text = text.into_bytes_with_nul();
195
unsafe {
196
- BNNotifyOutputForScriptingInstance(
+ BNNotifyWarningForScriptingInstance(
197
self.as_raw(),
198
text.as_ref().as_ptr() as *const ffi::c_char,
199
)
@@ -203,7 +203,7 @@ impl ScriptingInstance {
203
pub fn notify_error<S: BnStrCompatible>(&self, text: S) {
204
205
206
+ BNNotifyErrorForScriptingInstance(
207
208
209
0 commit comments