Marcus Meissner : regedit: FIXME() on printing.

Alexandre Julliard julliard at winehq.org
Fri Oct 12 11:37:45 CDT 2012


Module: wine
Branch: master
Commit: 443e196e082a8d113b11bd1849dca9a110f5d0d2
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=443e196e082a8d113b11bd1849dca9a110f5d0d2

Author: Marcus Meissner <meissner at suse.de>
Date:   Fri Oct 12 14:38:24 2012 +0200

regedit: FIXME() on printing.

---

 programs/regedit/framewnd.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/programs/regedit/framewnd.c b/programs/regedit/framewnd.c
index b3ca594..2e28670 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:




More information about the wine-cvs mailing list