From f8f08f3e9b134eb149aee8ea7af1a7add749d386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Fri, 17 Aug 2018 21:44:44 +0200 Subject: [PATCH] [ROSTESTS] Rename the "softmodalmsgbox" test to "messagebox". --- modules/rostests/win32/user32/CMakeLists.txt | 2 +- modules/rostests/win32/user32/messagebox/CMakeLists.txt | 5 +++++ .../softmodalmsgbox.c => messagebox/messagebox.c} | 0 .../softmodalmsgbox.rc => messagebox/messagebox.rc} | 0 .../win32/user32/{softmodalmsgbox => messagebox}/resource.h | 0 modules/rostests/win32/user32/softmodalmsgbox/CMakeLists.txt | 5 ----- 6 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 modules/rostests/win32/user32/messagebox/CMakeLists.txt rename modules/rostests/win32/user32/{softmodalmsgbox/softmodalmsgbox.c => messagebox/messagebox.c} (100%) rename modules/rostests/win32/user32/{softmodalmsgbox/softmodalmsgbox.rc => messagebox/messagebox.rc} (100%) rename modules/rostests/win32/user32/{softmodalmsgbox => messagebox}/resource.h (100%) delete mode 100644 modules/rostests/win32/user32/softmodalmsgbox/CMakeLists.txt diff --git a/modules/rostests/win32/user32/CMakeLists.txt b/modules/rostests/win32/user32/CMakeLists.txt index 205afbc4039..097f5261f59 100644 --- a/modules/rostests/win32/user32/CMakeLists.txt +++ b/modules/rostests/win32/user32/CMakeLists.txt @@ -1,5 +1,5 @@ add_subdirectory(biditext) +add_subdirectory(messagebox) add_subdirectory(paintdesktop) -add_subdirectory(softmodalmsgbox) add_subdirectory(sysicon) add_subdirectory(winstation) diff --git a/modules/rostests/win32/user32/messagebox/CMakeLists.txt b/modules/rostests/win32/user32/messagebox/CMakeLists.txt new file mode 100644 index 00000000000..a989b491dce --- /dev/null +++ b/modules/rostests/win32/user32/messagebox/CMakeLists.txt @@ -0,0 +1,5 @@ + +add_executable(messagebox messagebox.c messagebox.rc) +set_module_type(messagebox win32cui UNICODE) +add_importlibs(messagebox user32 msvcrt kernel32) +add_rostests_file(TARGET messagebox SUBDIR suppl) diff --git a/modules/rostests/win32/user32/softmodalmsgbox/softmodalmsgbox.c b/modules/rostests/win32/user32/messagebox/messagebox.c similarity index 100% rename from modules/rostests/win32/user32/softmodalmsgbox/softmodalmsgbox.c rename to modules/rostests/win32/user32/messagebox/messagebox.c diff --git a/modules/rostests/win32/user32/softmodalmsgbox/softmodalmsgbox.rc b/modules/rostests/win32/user32/messagebox/messagebox.rc similarity index 100% rename from modules/rostests/win32/user32/softmodalmsgbox/softmodalmsgbox.rc rename to modules/rostests/win32/user32/messagebox/messagebox.rc diff --git a/modules/rostests/win32/user32/softmodalmsgbox/resource.h b/modules/rostests/win32/user32/messagebox/resource.h similarity index 100% rename from modules/rostests/win32/user32/softmodalmsgbox/resource.h rename to modules/rostests/win32/user32/messagebox/resource.h diff --git a/modules/rostests/win32/user32/softmodalmsgbox/CMakeLists.txt b/modules/rostests/win32/user32/softmodalmsgbox/CMakeLists.txt deleted file mode 100644 index 310a01e5189..00000000000 --- a/modules/rostests/win32/user32/softmodalmsgbox/CMakeLists.txt +++ /dev/null @@ -1,5 +0,0 @@ - -add_executable(softmodalmsgbox softmodalmsgbox.c softmodalmsgbox.rc) -set_module_type(softmodalmsgbox win32cui UNICODE) -add_importlibs(softmodalmsgbox user32 msvcrt kernel32) -add_rostests_file(TARGET softmodalmsgbox SUBDIR suppl)