From 443e196e082a8d113b11bd1849dca9a110f5d0d2 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Fri, 12 Oct 2012 14:38:24 +0200 Subject: [PATCH] regedit: FIXME() on printing. --- programs/regedit/framewnd.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/programs/regedit/framewnd.c b/programs/regedit/framewnd.c index b3ca5949e61..2e2867024a7 100644 --- a/programs/regedit/framewnd.c +++ b/programs/regedit/framewnd.c @@ -30,8 +30,11 @@ #include "main.h" #include "regproc.h" +#include "wine/debug.h" #include "wine/unicode.h" +WINE_DEFAULT_DEBUG_CHANNEL(regedit); + /******************************************************************************** * Global and Local Variables: */ @@ -408,6 +411,7 @@ static BOOL PrintRegistryHive(HWND hWnd, LPCWSTR path) pd.nMinPage = 1; pd.nMaxPage = 0xFFFF; if (PrintDlgW(&pd)) { + FIXME("printing is not yet implemented.\n"); /* GDI calls to render output. */ DeleteDC(pd.hDC); /* Delete DC when done.*/ } @@ -420,11 +424,13 @@ static BOOL PrintRegistryHive(HWND hWnd, LPCWSTR path) switch (pd.dwResultAction) { case PD_RESULT_APPLY: /*The user clicked the Apply button and later clicked the Cancel button. This indicates that the user wants to apply the changes made in the property sheet, but does not yet want to print. The PRINTDLGEX structure contains the information specified by the user at the time the Apply button was clicked. */ + FIXME("printing is not yet implemented.\n"); break; case PD_RESULT_CANCEL: /*The user clicked the Cancel button. The information in the PRINTDLGEX structure is unchanged. */ break; case PD_RESULT_PRINT: + FIXME("printing is not yet implemented.\n"); /*The user clicked the Print button. The PRINTDLGEX structure contains the information specified by the user. */ break; default: