refactor(veranstaltung): VeranstaltungVerwaltungV2 in VeranstaltungVerwaltung umbenannt

Signed-off-by: Stefan Mogeritsch <stefan.mo.co@gmail.com>
This commit is contained in:
Stefan Mogeritsch 2026-04-16 14:31:40 +02:00
parent ba812e230d
commit f3d5651ab7
2 changed files with 2 additions and 2 deletions

View File

@ -531,7 +531,7 @@ private fun DesktopContentArea(
// Haupt-Zentrale: Veranstaltung-Verwaltung
is AppScreen.VeranstaltungVerwaltung -> {
at.mocode.desktop.v2.VeranstaltungVerwaltungV2(
at.mocode.desktop.v2.VeranstaltungVerwaltung(
onVeranstaltungOpen = { vId, eId -> onNavigate(AppScreen.VeranstaltungProfil(vId, eId)) },
onNewVeranstaltung = { onNavigate(AppScreen.VeranstaltungKonfig()) },
onNavigateToPferde = { onNavigate(AppScreen.PferdVerwaltung) },

View File

@ -32,7 +32,7 @@ import javax.swing.filechooser.FileNameExtensionFilter
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun VeranstaltungVerwaltungV2(
fun VeranstaltungVerwaltung(
onVeranstaltungOpen: (Long, Long) -> Unit, // veranstalterId, veranstaltungId
onNewVeranstaltung: () -> Unit,
onNavigateToPferde: () -> Unit,