Changeset 22113 for branches


Ignore:
Timestamp:
Feb 9, 2016, 12:57:21 PM (10 years ago)
Author:
rousseau
Message:

Made code-generator use 'lf' for source related files [apitest]

This is more consistent with Odin sources, which also use 'lf'.

Location:
branches/swt/testapp/apitest
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/swt/testapp/apitest/ApiTest.properties

    r22112 r22113  
    22#The properties in this file are here to aid the developer by providing a backlink.
    33#This kinda has to do with 'modeling' and being able to 'regenerate' a published commit.
    4 #Mon, 25 Jan 2016 22:33:43 -0500
     4#Sun, 07 Feb 2016 10:54:27 -0500
    55
    6 meta-commit=ba42daf18f7391a9815d5d7cbbb22a11559673a8
     6meta-commit=none
  • branches/swt/testapp/apitest/src/ApiTestOdin.cpp

    r22112 r22113  
    179179                lres = 0;
    180180            } while (0);
    181                
     181
    182182            //lres = DefWindowProc(hwnd, msg, wparam, lparam);
    183183            break;
     
    258258    /* Register the class of the Main Window */
    259259    RegisterClass(&wc);
    260  
     260
    261261    /* Create the Main Window */
    262262    hwnd = CreateWindow(
    263263        MainWndClass,                   // Our Window Class
    264         "ApiTestOdin :: Main Window [generated:201601252233]",  // Caption Text
     264        "ApiTestOdin :: Main Window [generated:201602071054]",  // Caption Text
    265265        WS_OVERLAPPEDWINDOW,            // Window Stype
    266266        100,                            // The x-pos from ulc
     
    303303    printf("\n");
    304304    printf("%s\n","###############################################################################");
    305     printf("%s\n","# This is the Odin variant of ApiTest                    version.201601252233 #");
     305    printf("%s\n","# This is the Odin variant of ApiTest                    version.201602071054 #");
    306306    printf("%s\n","###############################################################################");
    307307    printf("\n");
  • branches/swt/testapp/apitest/src/ApiTestPm.cpp

    r22112 r22113  
    208208            };
    209209    PSZ     pszClassClient  = (PSZ) "ApiTestPm";                // Window Class Name
    210     PSZ     pszTitle        = (PSZ) "ApiTestPm :: Main Window [generated:201601252233]";    // Window Title
     210    PSZ     pszTitle        = (PSZ) "ApiTestPm :: Main Window [generated:201602071054]";    // Window Title
    211211    ULONG   flStyleClient   = 0;                                // Style for Client Window
    212212    HWND    hwndFrame       = NULL;                             // Receives handle for Frame Window
     
    314314    printf("\n");
    315315    printf("%s\n","###############################################################################");
    316     printf("%s\n","# This is the PM variant of ApiTest                      version.201601252233 #");
     316    printf("%s\n","# This is the PM variant of ApiTest                      version.201602071054 #");
    317317    printf("%s\n","###############################################################################");
    318318    printf("\n");
  • branches/swt/testapp/apitest/src/ApiTestWin.cpp

    r22112 r22113  
    182182                lres = 0;
    183183            } while (0);
    184                
     184
    185185            //lres = DefWindowProc(hwnd, msg, wparam, lparam);
    186186            break;
     
    262262    /* Register the class of the Main Window */
    263263    RegisterClass(&wc);
    264  
     264
    265265    /* Create the Main Window */
    266266    hwnd = CreateWindow(
    267267        MainWndClass,                   // Our Window Class
    268         "ApiTestWin :: Main Window [generated:201601252233]",   // Caption Text
     268        "ApiTestWin :: Main Window [generated:201602071054]",   // Caption Text
    269269        WS_OVERLAPPEDWINDOW,            // Window Stype
    270270        100,                            // The x-pos from ulc
     
    307307    printf("\n");
    308308    printf("%s\n","###############################################################################");
    309     printf("%s\n","# This is the Windows variant of ApiTest                 version.201601252233 #");
     309    printf("%s\n","# This is the Windows variant of ApiTest                 version.201602071054 #");
    310310    printf("%s\n","###############################################################################");
    311311    printf("\n");
Note: See TracChangeset for help on using the changeset viewer.