Skip to content

Commit f545461

Browse files
committed
fix merge for uwp
1 parent 4c380ef commit f545461

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/uwp/app.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ struct AppState {
1717
game: Minesweeper,
1818
}
1919

20-
#[winrt::implement(windows::application_model::core::IFrameworkViewSource)]
20+
#[::windows::implement(windows::application_model::core::IFrameworkViewSource)]
2121
pub struct MinesweeperAppSource {}
2222

2323
impl MinesweeperAppSource {
@@ -31,7 +31,7 @@ impl MinesweeperAppSource {
3131
}
3232

3333
// TOOD: A way to do this without the arc/mutex?
34-
#[winrt::implement(windows::application_model::core::IFrameworkView)]
34+
#[::windows::implement(windows::application_model::core::IFrameworkView)]
3535
pub struct MinesweeperApp {
3636
state: Arc<Mutex<Option<AppState>>>,
3737
}
@@ -45,7 +45,7 @@ impl MinesweeperApp {
4545
Ok(())
4646
}
4747

48-
fn load(&mut self, _entry_point: &winrt::HString) -> windows::Result<()> {
48+
fn load(&mut self, _entry_point: &windows::HString) -> windows::Result<()> {
4949
Ok(())
5050
}
5151

0 commit comments

Comments
 (0)