File indexing completed on 2025-01-19 03:59:16
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2004-11-22 0007 * Description : digiKam image editor - Import tools 0008 * 0009 * SPDX-FileCopyrightText: 2004-2024 by Gilles Caulier <caulier dot gilles at gmail dot com> 0010 * 0011 * SPDX-License-Identifier: GPL-2.0-or-later 0012 * 0013 * ============================================================ */ 0014 0015 #include "imagewindow_p.h" 0016 0017 namespace Digikam 0018 { 0019 0020 void ImageWindow::slotImportedImagefromScanner(const QUrl& url) 0021 { 0022 ItemInfo info = ScanController::instance()->scannedInfo(url.toLocalFile()); 0023 openImage(info); 0024 } 0025 0026 } // namespace Digikam