File indexing completed on 2024-05-12 15:58:47

0001 /*
0002  *  SPDX-FileCopyrightText: 2007 Sven Langkamp <sven.langkamp@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #include "kis_undo_adapter.h"
0008 
0009 
0010 KisUndoAdapter::KisUndoAdapter(KisUndoStore *undoStore, QObject *parent)
0011     : QObject(parent),
0012       m_undoStore(undoStore)
0013 {
0014 }
0015 
0016 KisUndoAdapter::~KisUndoAdapter()
0017 {
0018 }
0019 
0020 void KisUndoAdapter::emitSelectionChanged()
0021 {
0022     emit selectionChanged();
0023 }
0024 
0025 
0026