| 21 | static bool show_disallow_certain_dbus_methods_message = true; |
| 22 | |
| 23 | SessionStack::SessionStack(QWidget *parent) |
| 24 | : QStackedWidget(parent) |
| 25 | { |
| 26 | QDBusConnection::sessionBus().registerObject(QStringLiteral("/yakuake/sessions"), this, QDBusConnection::ExportScriptableSlots); |
| 27 | |
| 28 | m_activeSessionId = -1; |
| 29 | |
| 30 | m_visualEventOverlay = new VisualEventOverlay(this); |
| 31 | connect(this, SIGNAL(removeTerminalHighlight()), m_visualEventOverlay, SLOT(removeTerminalHighlight())); |
| 32 | } |
| 33 | |
| 34 | SessionStack::~SessionStack() = default; |
| 35 |
nothing calls this directly
no outgoing calls
no test coverage detected