Changeset 5

Show
Ignore:
Timestamp:
12/22/07 03:03:26 (3 years ago)
Author:
jchaffraix
Message:

Correct typo in one header
Correct some more coding style issues

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Implementations/Ivy/IvyRequest.h

    r3 r5  
    4343} 
    4444 
    45 using namespace KJS::Bindings; 
    46 using namespace WebCore; 
    47  
    4845namespace KJS { 
    4946 
     
    5653   * @see JavascriptCore/bindings/testbalbindings for a more complete example 
    5754   */ 
    58 class IvyRequest : public BalObject { 
     55class IvyRequest : public KJS::Bindings::BalObject { 
    5956 
    6057public: 
     
    7673    RefPtr<IvyWrapper> m_ivyWrapper; 
    7774 
    78     }; //IvyRequest 
     75}; // IvyRequest 
    7976 
    80 }; // namespace KJS 
     77} // namespace KJS 
    8178 
    82 #endif //IvyRequest_h 
     79#endif // IvyRequest_h 
  • trunk/Implementations/Ivy/IvyWrapAppCb.h

    r2 r5  
    3737 
    3838using namespace WebCore; 
     39 
    3940/** 
    4041 * @brief Ivy application callback class 
     
    8384    KJS::JSObject* m_appDisconnectCb; 
    8485 
    85 }; //IvyWrapAppCb 
     86}; // IvyWrapAppCb 
    8687 
    87 #endif //IvyWrapAppCb_h 
     88#endif // IvyWrapAppCb_h 
  • trunk/Implementations/Ivy/IvyWrapCallback.h

    r3 r5  
    133133}; 
    134134 
    135 #endif //IvyWrapCallback_h 
     135#endif // IvyWrapCallback_h 
  • trunk/Implementations/Ivy/IvyWrapMsgCb.h

    r3 r5  
    4848 * @see IvyWrapCallback 
    4949 */ 
     50 
    5051class IvyWrapMsgCb: public IvyWrapCallback, public IvyMessageCallback { 
    5152 
     
    5859    IvyWrapMsgCb(WebCore::Frame*, KJS::UString& regExp, KJS::JSValue* scriptCb); 
    5960   
    60     //FIXME : Usefull ? 
     61    // FIXME : Usefull ? 
    6162    void IvyChangeMsgCb(KJS::ExecState*, KJS::JSValue*); 
    6263 
     
    7374    KJS::JSObject* m_scriptCb; 
    7475 
    75 }; //class IvyWrapMsgCb 
     76}; // class IvyWrapMsgCb 
    7677 
    77 #endif //IvyWrapMsgCb_h 
     78#endif // IvyWrapMsgCb_h 
  • trunk/Implementations/Ivy/IvyWrapper.h

    r3 r5  
    151151}; 
    152152 
    153 #endif //IvyWrapper_h 
     153#endif // IvyWrapper_h