chore: cleanup additional item missed in when removing the legacy tray icon

This commit is contained in:
sithlord48
2025-02-24 14:18:44 -05:00
committed by Chris Rizzitello
parent 193c28af53
commit 2d3f64f662
3 changed files with 0 additions and 16 deletions

View File

@ -206,14 +206,6 @@ void App::initApp(int argc, const char **argv)
// load configuration
loadConfig();
if (!argsBase().m_disableTray && m_createTaskBarReceiver) {
// create a log buffer so we can show the latest message
// as a tray icon tooltip
BufferedLogOutputter *logBuffer = new BufferedLogOutputter(1000);
CLOG->insert(logBuffer, true);
}
}
void App::initIpcClient()

View File

@ -21,8 +21,6 @@
#include <stdexcept>
class IArchTaskBarReceiver;
class BufferedLogOutputter;
class ILogOutputter;
class FileLogOutputter;
namespace deskflow {
@ -31,8 +29,6 @@ class Screen;
class IEventQueue;
class SocketMultiplexer;
typedef IArchTaskBarReceiver *(*CreateTaskBarReceiverFunc)(const BufferedLogOutputter *, IEventQueue *events);
class App : public IApp
{
public:
@ -127,7 +123,6 @@ private:
deskflow::ArgsBase *m_args;
static App *s_instance;
FileLogOutputter *m_fileLog;
CreateTaskBarReceiverFunc m_createTaskBarReceiver;
ARCH_APP_UTIL m_appUtil;
IpcClient *m_ipcClient;
SocketMultiplexer *m_socketMultiplexer;

View File

@ -56,9 +56,6 @@ public:
/// @brief The name of the current computer
std::string m_name;
/// @brief Should the app add a tray icon
bool m_disableTray = false;
/// @brief Tell the client to talk through IPC to the daemon
bool m_enableIpc = false;