Changeset 1794 for trunk/src


Ignore:
Timestamp:
Nov 21, 1999, 3:04:11 PM (26 years ago)
Author:
achimha
Message:

added message logging statement, outcommented

Location:
trunk/src/user32
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/button.cpp

    r1762 r1794  
    1 /* $Id: button.cpp,v 1.18 1999-11-17 17:04:51 cbratschi Exp $ */
     1/* $Id: button.cpp,v 1.19 1999-11-21 14:04:10 achimha Exp $ */
    22/* File: button.cpp -- Button type widgets
    33 *
     
    1818#include <misc.h>
    1919#include "initterm.h"
     20
     21#ifdef DEBUG
     22char *GetMsgText(int Msg);
     23#endif
    2024
    2125//Prototypes
     
    536540LRESULT WINAPI ButtonWndProc(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam)
    537541{
     542//  dprintf(("ButtonWndProc hwnd: %04x, msg %s, wp %08x lp %08lx\n",
     543//           hwnd, GetMsgText(uMsg), wParam, lParam));
     544
    538545  switch (uMsg)
    539546  {
  • trunk/src/user32/combo.cpp

    r1784 r1794  
    1 /* $Id: combo.cpp,v 1.16 1999-11-19 21:22:01 cbratschi Exp $ */
     1/* $Id: combo.cpp,v 1.17 1999-11-21 14:04:10 achimha Exp $ */
    22/*
    33 * Combo controls
     
    2222#include "combo.h"
    2323#include "initterm.h"
     24
     25#ifdef DEBUG
     26char *GetMsgText(int Msg);
     27#endif
    2428
    2529  /* bits in the dwKeyData */
     
    21292133                             WPARAM wParam, LPARAM lParam )
    21302134{
    2131       //TRACE("[%04x]: msg %s wp %08x lp %08lx\n",
    2132       //             pWnd->hwndSelf, SPY_GetMsgName(message), wParam, lParam );
     2135//      dprintf(("ComboWndProc hwnd: %04x, msg %s, wp %08x lp %08lx\n",
     2136//               hwnd, GetMsgText(message), wParam, lParam));
    21332137
    21342138      switch(message)
  • trunk/src/user32/edit.cpp

    r1762 r1794  
    1 /* $Id: edit.cpp,v 1.15 1999-11-17 17:04:52 cbratschi Exp $ */
     1/* $Id: edit.cpp,v 1.16 1999-11-21 14:04:11 achimha Exp $ */
    22/*
    33 *      Edit control
     
    2828#include "controls.h"
    2929#include "combo.h"
     30
     31#ifdef DEBUG
     32char *GetMsgText(int Msg);
     33#endif
    3034
    3135#define BUFLIMIT_MULTI          65534   /* maximum buffer size (not including '\0')
     
    297301        EDITSTATE *es = (EDITSTATE*)GetInfoPtr(hwnd);
    298302        LRESULT result = 0;
     303
     304//      dprintf(("EditWndProc hwnd: %04x, msg %s, wp %08x lp %08lx\n",
     305//               hwnd, GetMsgText(msg), wParam, lParam));
    299306
    300307        switch (msg) {
Note: See TracChangeset for help on using the changeset viewer.