ff9ff6018b
This patch hides away the file name and the name of the user when the user tries to open a locked file. This improves privacy, as discussed in the bug report. The .ui file for the new dialog box is `vcl/uiconfig/ui/openlockedquerybox.ui`. The source files `openlocked.hxx` and `openlocked.cxx` have been changed to implement the new dialog. The old string template `STR_OPENLOCKED_MSG` has been deleted to hide away the private data, and a new string template `STR_OPENLOCKED_HIDDEN_DATA` has been added; the latter will be hidden inside the expander dialog. Finally, corresponding changes in the makefiles have been made to let the makefiles know about the UI file. Change-Id: I3cc9d2f6e2d9bc43857c80662e2a405aacd7fc70 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132342 Tested-by: Jenkins Reviewed-by: Hossein <hossein@libreoffice.org>
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# 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/.
|
|
#
|
|
|
|
$(eval $(call gb_UIConfig_UIConfig,vcl))
|
|
|
|
$(eval $(call gb_UIConfig_add_uifiles,vcl,\
|
|
vcl/uiconfig/ui/aboutbox \
|
|
vcl/uiconfig/ui/combobox \
|
|
vcl/uiconfig/ui/cupspassworddialog \
|
|
vcl/uiconfig/ui/dockingwindow \
|
|
vcl/uiconfig/ui/editmenu \
|
|
vcl/uiconfig/ui/errornocontentdialog \
|
|
vcl/uiconfig/ui/errornoprinterdialog \
|
|
vcl/uiconfig/ui/interimdockparent \
|
|
vcl/uiconfig/ui/interimtearableparent \
|
|
vcl/uiconfig/ui/menutogglebutton3 \
|
|
vcl/uiconfig/ui/menutogglebutton4 \
|
|
vcl/uiconfig/ui/printdialog \
|
|
vcl/uiconfig/ui/printerdevicepage \
|
|
vcl/uiconfig/ui/printerpaperpage \
|
|
vcl/uiconfig/ui/printerpropertiesdialog \
|
|
vcl/uiconfig/ui/printprogressdialog \
|
|
vcl/uiconfig/ui/querydialog \
|
|
vcl/uiconfig/ui/screenshotparent \
|
|
vcl/uiconfig/ui/wizard \
|
|
vcl/uiconfig/ui/openlockedquerybox \
|
|
))
|
|
|
|
$(eval $(call gb_UIConfig_add_a11yerrors_uifiles,vcl,\
|
|
vcl/qa/cppunit/builder/demo \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|