File indexing completed on 2024-09-29 03:29:22
0001 // SPDX-FileCopyrightText: 2023 Carl Schwan <carlschwan@kde.org> 0002 // SPDX-License-Identifier: GPL-2.0-or-later 0003 0004 #include "fileopener.h" 0005 0006 void FileOpener::openFile(const QUrl &file, const Prefs::EnumStartSession mode) 0007 { 0008 Q_EMIT fileOpened(file, mode); 0009 } 0010 0011 #include "moc_fileopener.cpp"