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
Copy file name to clipboardExpand all lines: crates/cxx-qt-lib/src/core/qtlogging.rs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ mod ffi {
17
17
include!("cxx-qt-lib/qtlogging.h");
18
18
19
19
/// Changes the output of the default message handler.
20
-
/// Allows to tweak the output of [`q_debug!`], [`q_info!`], [`q_warning!`], [`q_critical!`], and [`q_fatal!`].
20
+
/// Allows to tweak the output of [`q_debug!`](crate::q_debug!), [`q_info!`](crate::q_info!), [`q_warning!`](crate::q_warning!), [`q_critical!`](crate::q_critical!), and [`q_fatal!`](crate::q_fatal!).
21
21
///
22
22
/// See the [Qt documentation](https://doc.qt.io/qt/qtlogging.html#qSetMessagePattern) for pattern syntax.
23
23
#[rust_name = "q_set_message_pattern"]
@@ -39,39 +39,39 @@ use std::ffi::CStr;
39
39
40
40
pubuse ffi::q_set_message_pattern;
41
41
42
-
/// Backing function for the [`q_debug!`] macro. See the macro's documentation for more details.
42
+
/// Backing function for the [`q_debug!`](crate::q_debug!) macro. See the macro's documentation for more details.
0 commit comments