Files
core/vcl/source/components/factory.cxx
Michael Weghorn a4954e5575 vcl: Drop logic to create drag source by service name
This is basically the drag source equivalent of previous
commit

    Change-Id: I93c099b82e209efe11f30bbc4f5fa0a6e1fff992
    Author: Michael Weghorn <m.weghorn@posteo.de>
    Date:   Fri Jul 11 13:47:54 2025 +0200

        vcl: Drop logic to create drop target by service name

, see the commit message of that one for more details/background.

Change-Id: If870b340f39bd7fcf6674af3184e2a4c3017310d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187727
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
2025-07-14 09:48:41 +02:00

35 lines
1.2 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <vcl/dllapi.h>
extern "C" {
VCL_DLLPUBLIC void* vcl_component_getFactory(
const char* /*pImplementationName*/,
void* /*pXUnoSMgr*/,
void* /*pXUnoKey*/)
{
return nullptr;
}
} /* extern "C" */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */