Skip to content

Commit 85de9df

Browse files
QQmlApplicationEngine: Fix needless live
1 parent d2a937d commit 85de9df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/cxx-qt-lib/src/qml/qqmlapplicationengine.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ pub use ffi::QQmlApplicationEngine;
9393

9494
impl QQmlApplicationEngine {
9595
/// Convert the existing [QQmlApplicationEngine] to a [QQmlEngine]
96-
pub fn as_qqmlengine<'a>(self: Pin<&'a mut Self>) -> Pin<&'a mut QQmlEngine> {
96+
pub fn as_qqmlengine(self: Pin<&'a mut Self>) -> Pin<&mut QQmlEngine> {
9797
ffi::qqmlapplicationengine_as_qqmlengine(self)
9898
}
9999

0 commit comments

Comments
 (0)