From 5c14d148e183d6a727bb876b268ab9ce879a5c14 Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Sun, 2 Nov 2014 23:30:48 +0000 Subject: [PATCH] [SHELL32] - Move files that implement dialogs and property sheets in dialogs folder svn path=/branches/shell-experiments/; revision=65206 --- dll/win32/shell32/CMakeLists.txt | 12 ++++++------ dll/win32/shell32/{ => dialogs}/dialogs.cpp | 0 dll/win32/shell32/{ => dialogs}/drive.cpp | 0 dll/win32/shell32/{ => dialogs}/drvdefext.cpp | 0 dll/win32/shell32/{ => dialogs}/filedefext.cpp | 0 dll/win32/shell32/{ => dialogs}/folder_options.cpp | 0 dll/win32/shell32/{ => dialogs}/fprop.cpp | 0 7 files changed, 6 insertions(+), 6 deletions(-) rename dll/win32/shell32/{ => dialogs}/dialogs.cpp (100%) rename dll/win32/shell32/{ => dialogs}/drive.cpp (100%) rename dll/win32/shell32/{ => dialogs}/drvdefext.cpp (100%) rename dll/win32/shell32/{ => dialogs}/filedefext.cpp (100%) rename dll/win32/shell32/{ => dialogs}/folder_options.cpp (100%) rename dll/win32/shell32/{ => dialogs}/fprop.cpp (100%) diff --git a/dll/win32/shell32/CMakeLists.txt b/dll/win32/shell32/CMakeLists.txt index 5b9fa9adf03..70ef75cf1b0 100644 --- a/dll/win32/shell32/CMakeLists.txt +++ b/dll/win32/shell32/CMakeLists.txt @@ -29,7 +29,12 @@ list(APPEND SOURCE dde.cpp debughlp.cpp desktop.cpp - dialogs.cpp + dialogs/dialogs.cpp + dialogs/drive.cpp + dialogs/drvdefext.cpp + dialogs/folder_options.cpp + dialogs/filedefext.cpp + dialogs/fprop.cpp dragdrophelper.cpp enumidlist.cpp extracticon.cpp @@ -63,15 +68,10 @@ list(APPEND SOURCE shpolicy.cpp stubs.cpp systray.cpp - fprop.cpp - drive.cpp defcontextmenu.cpp openwithmenu.cpp newmenu.cpp startmenu.cpp - folder_options.cpp - filedefext.cpp - drvdefext.cpp precomp.h) add_library(shell32 SHARED diff --git a/dll/win32/shell32/dialogs.cpp b/dll/win32/shell32/dialogs/dialogs.cpp similarity index 100% rename from dll/win32/shell32/dialogs.cpp rename to dll/win32/shell32/dialogs/dialogs.cpp diff --git a/dll/win32/shell32/drive.cpp b/dll/win32/shell32/dialogs/drive.cpp similarity index 100% rename from dll/win32/shell32/drive.cpp rename to dll/win32/shell32/dialogs/drive.cpp diff --git a/dll/win32/shell32/drvdefext.cpp b/dll/win32/shell32/dialogs/drvdefext.cpp similarity index 100% rename from dll/win32/shell32/drvdefext.cpp rename to dll/win32/shell32/dialogs/drvdefext.cpp diff --git a/dll/win32/shell32/filedefext.cpp b/dll/win32/shell32/dialogs/filedefext.cpp similarity index 100% rename from dll/win32/shell32/filedefext.cpp rename to dll/win32/shell32/dialogs/filedefext.cpp diff --git a/dll/win32/shell32/folder_options.cpp b/dll/win32/shell32/dialogs/folder_options.cpp similarity index 100% rename from dll/win32/shell32/folder_options.cpp rename to dll/win32/shell32/dialogs/folder_options.cpp diff --git a/dll/win32/shell32/fprop.cpp b/dll/win32/shell32/dialogs/fprop.cpp similarity index 100% rename from dll/win32/shell32/fprop.cpp rename to dll/win32/shell32/dialogs/fprop.cpp -- 2.17.1