mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 10:43:39 +00:00
13 lines
334 B
C++
13 lines
334 B
C++
#include "../Platform/stdafx.h"
|
|
#include "RepairMenu.h"
|
|
#include "RepairContainer.h"
|
|
|
|
RepairContainer::RepairContainer(RepairMenu* menu, int name, int size)
|
|
: SimpleContainer(name, size) {
|
|
m_menu = menu;
|
|
}
|
|
|
|
void RepairContainer::setChanged() {
|
|
SimpleContainer::setChanged();
|
|
m_menu->slotsChanged(shared_from_this());
|
|
} |