File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ struct AppState {
17
17
game : Minesweeper ,
18
18
}
19
19
20
- #[ winrt :: implement( windows:: application_model:: core:: IFrameworkViewSource ) ]
20
+ #[ :: windows :: implement( windows:: application_model:: core:: IFrameworkViewSource ) ]
21
21
pub struct MinesweeperAppSource { }
22
22
23
23
impl MinesweeperAppSource {
@@ -31,7 +31,7 @@ impl MinesweeperAppSource {
31
31
}
32
32
33
33
// 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 ) ]
35
35
pub struct MinesweeperApp {
36
36
state : Arc < Mutex < Option < AppState > > > ,
37
37
}
@@ -45,7 +45,7 @@ impl MinesweeperApp {
45
45
Ok ( ( ) )
46
46
}
47
47
48
- fn load ( & mut self , _entry_point : & winrt :: HString ) -> windows:: Result < ( ) > {
48
+ fn load ( & mut self , _entry_point : & windows :: HString ) -> windows:: Result < ( ) > {
49
49
Ok ( ( ) )
50
50
}
51
51
You can’t perform that action at this time.
0 commit comments