home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: SysTools / SysTools.zip / taman002.zip / TASKMANA.ZIP / src / kBeliever.cpp < prev    next >
C/C++ Source or Header  |  2000-04-29  |  2KB  |  69 lines

  1. /* $Id: kBeliever.cpp,v 1.1 2000/04/29 19:06:34 stknut Exp $
  2.  *
  3.  * kBeliever - a note for believers in Jesus Christ.
  4.  *
  5.  * Copyright (c) 2000 knut st. osmundsen
  6.  *
  7.  */
  8.  
  9. /*******************************************************************************
  10. *   Defined Constants And Macros                                               *
  11. *******************************************************************************/
  12. #define INCL_WINERRORS
  13. #define INCL_WINDIALOG
  14. #define INCL_WININPUT
  15. #define INCL_WINDIALOGS
  16. #define INCL_WINFRAMEMGR
  17.  
  18. /*******************************************************************************
  19. *   Header Files                                                               *
  20. *******************************************************************************/
  21. #include <os2.h>
  22. #ifdef USE_KLIB
  23.     #include <kAssert.h>
  24.     #include <kLog.h>
  25.     #include <kHeap.h>
  26. #endif
  27. #include "kError.h"
  28. #include "kDlgBase.h"
  29. #include "kClickDlg.h"
  30.  
  31. #include "kBeliever.h"
  32. #include "kTaskMgr_defs.h"
  33.  
  34.  
  35. /**
  36.  * Constructor
  37.  * @param     hwndOwner  Handle to owner window.
  38.  * @author    knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
  39.  */
  40. kBeliever::kBeliever(HWND hwndOwner)
  41.     :kClickDlg(hwndOwner, DL_KBELIEVER, NULLHANDLE)
  42. {
  43.     WinSetDlgItemText(hwnd, DL_KBELIEVER_MLE,
  44. "If you Believe that Jesus is The Son of God, and that Hi, Jesus Christ, "
  45. "is your Lord, I would humbly ask for a small prayer over my one and only love, "
  46. "Grace, and me. We are having a very hard time right now. She has actually "
  47. "broken our engagement and left me.\r"
  48. "\r"
  49. "I believe that the Lord Jesus will repair our relationship. Hi has promised "
  50. "me so! We need your to pray over us. I suggest you pray for love to grow, "
  51. "marriage to come and that His will be done, in the Name of Jesus Christ.\r"
  52. "\r"
  53. "Thanks a lot!\r"
  54. "\r"
  55. "God Bless You.\r"
  56. "\r"
  57. "Your humble brother, knut"
  58.     );
  59. }
  60.  
  61.  
  62. /**
  63.  * Destructor stub.
  64.  */
  65. kBeliever::~kBeliever()
  66. {
  67. }
  68.  
  69.