about summary refs log tree commit diff
path: root/MatrixUtils.Desktop/Components/Pages
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-01-24 02:31:56 +0100
committerRory& <root@rory.gay>2024-01-24 17:05:25 +0100
commit03313562d21d5db9bf6a14ebbeab80e06c883d3a (patch)
treee000546a2ee8e6a886a7ed9fd01ad674178fb7cb /MatrixUtils.Desktop/Components/Pages
parentMake RMU installable (diff)
downloadMatrixUtils-03313562d21d5db9bf6a14ebbeab80e06c883d3a.tar.xz
MRU->RMU, fixes, cleanup
Diffstat (limited to '')
-rw-r--r--MatrixUtils.Desktop/Components/Pages/RoomList.axaml (renamed from MatrixRoomUtils.Desktop/Components/Pages/RoomList.axaml)8
-rw-r--r--MatrixUtils.Desktop/Components/Pages/RoomList.axaml.cs (renamed from MatrixRoomUtils.Desktop/Components/Pages/RoomList.axaml.cs)4
2 files changed, 6 insertions, 6 deletions
diff --git a/MatrixRoomUtils.Desktop/Components/Pages/RoomList.axaml b/MatrixUtils.Desktop/Components/Pages/RoomList.axaml

index 0e43d99..45778f3 100644 --- a/MatrixRoomUtils.Desktop/Components/Pages/RoomList.axaml +++ b/MatrixUtils.Desktop/Components/Pages/RoomList.axaml
@@ -2,12 +2,12 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" - xmlns:components="clr-namespace:MatrixRoomUtils.Desktop.Components.Pages" - xmlns:components1="clr-namespace:MatrixRoomUtils.Desktop.Components" - xmlns:abstractions="clr-namespace:MatrixRoomUtils.Abstractions;assembly=MatrixRoomUtils.Abstractions" + xmlns:components="clr-namespace:MatrixUtils.Desktop.Components.Pages" + xmlns:components1="clr-namespace:MatrixUtils.Desktop.Components" + xmlns:abstractions="clr-namespace:MatrixUtils.Abstractions;assembly=MatrixUtils.Abstractions" mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" - x:Class="MatrixRoomUtils.Desktop.Components.Pages.RoomList" + x:Class="MatrixUtils.Desktop.Components.Pages.RoomList" x:DataType="components:RoomList" DataContext="{Binding $self}" > diff --git a/MatrixRoomUtils.Desktop/Components/Pages/RoomList.axaml.cs b/MatrixUtils.Desktop/Components/Pages/RoomList.axaml.cs
index 53c3063..a0c9fcc 100644 --- a/MatrixRoomUtils.Desktop/Components/Pages/RoomList.axaml.cs +++ b/MatrixUtils.Desktop/Components/Pages/RoomList.axaml.cs
@@ -2,9 +2,9 @@ using System.Collections.ObjectModel; using Avalonia; using Avalonia.Controls; using Avalonia.Markup.Xaml; -using MatrixRoomUtils.Abstractions; +using MatrixUtils.Abstractions; -namespace MatrixRoomUtils.Desktop.Components.Pages; +namespace MatrixUtils.Desktop.Components.Pages; public partial class RoomList : UserControl { private ObservableCollection<RoomInfo> Rooms { get; set; } = new();