Chat-O-Matic/application/views/AccountMenuItem.cpp

25 lines
443 B
C++
Raw Normal View History

/*
* Copyright 2021, Jaidyn Levesque <jadedctrl@teknik.io>
* All rights reserved. Distributed under the terms of the MIT license.
*/
#include "AccountMenuItem.h"
#include "AccountsMenu.h"
AccountMenuItem::AccountMenuItem(const char* label, BMessage* msg)
:
BMenuItem(label, msg)
{
}
void
AccountMenuItem::SetMarked(bool mark)
{
BMenuItem::SetMarked(mark);
if (mark == true)
((AccountsMenu*)Menu())->SetDefaultSelection(this);
}