Ignore:
Timestamp:
Aug 26, 2011 4:30:18 AM (13 years ago)
Author:
nanang
Message:

Re #1327:

  • Vidgui UI updates on Qt must be done in the UI thread, implemented this with Qt signal-slot mechanism.
  • VidWin::show() better be called internally by VidWin? class instead of MainWin?.
  • Fix QString to const char* issue, keeping the pointer returned by "QString::to*()::data()" won't work, the pointer actually points to a temporary data (lifetime issue).
  • Minor: cleaning up unused lines in vidgui.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/vidgui/vidwin.h

    r3724 r3726  
    3333    virtual ~VidWin(); 
    3434    QSize sizeHint() const { return size_hint; } 
    35     void show(bool visible=true); 
    3635 
    3736protected: 
     
    4746    void set_size(); 
    4847    void get_size(); 
     48    void show(bool visible=true); 
    4949}; 
    5050 
Note: See TracChangeset for help on using the changeset viewer.