Skip to content

Commit

Permalink
Traktor: Updated linux UI; removed ContainerX11 class.
Browse files Browse the repository at this point in the history
  • Loading branch information
apistol78 committed Apr 15, 2024
1 parent 7b31cb5 commit 2f4edf3
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 91 deletions.
52 changes: 0 additions & 52 deletions code/Ui/X11/ContainerX11.cpp

This file was deleted.

29 changes: 0 additions & 29 deletions code/Ui/X11/ContainerX11.h

This file was deleted.

8 changes: 1 addition & 7 deletions code/Ui/X11/WidgetFactoryX11.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* TRAKTOR
* Copyright (c) 2022 Anders Pistol.
* Copyright (c) 2022-2024 Anders Pistol.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
Expand All @@ -12,7 +12,6 @@
#include "Core/Log/Log.h"
#include "Core/Misc/TString.h"
#include "Ui/X11/BitmapX11.h"
#include "Ui/X11/ContainerX11.h"
#include "Ui/X11/ClipboardX11.h"
#include "Ui/X11/DialogX11.h"
#include "Ui/X11/EventLoopX11.h"
Expand Down Expand Up @@ -86,11 +85,6 @@ IEventLoop* WidgetFactoryX11::createEventLoop(EventSubject* owner)
return new EventLoopX11(m_context);
}

IContainer* WidgetFactoryX11::createContainer(EventSubject* owner)
{
return new ContainerX11(m_context, owner);
}

IDialog* WidgetFactoryX11::createDialog(EventSubject* owner)
{
return new DialogX11(m_context, owner);
Expand Down
4 changes: 1 addition & 3 deletions code/Ui/X11/WidgetFactoryX11.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* TRAKTOR
* Copyright (c) 2022 Anders Pistol.
* Copyright (c) 2022-2024 Anders Pistol.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down Expand Up @@ -33,8 +33,6 @@ class T_DLLCLASS WidgetFactoryX11 : public IWidgetFactory

virtual IEventLoop* createEventLoop(EventSubject* owner) override final;

virtual IContainer* createContainer(EventSubject* owner) override final;

virtual IDialog* createDialog(EventSubject* owner) override final;

virtual IForm* createForm(EventSubject* owner) override final;
Expand Down

0 comments on commit 2f4edf3

Please sign in to comment.