Changeset 6178

Show
Ignore:
Timestamp:
2008-05-01 18:55:57 (3 months ago)
Author:
flynd
Message:

Use clicked signal for calendar so we don't get signal when changing date from the code. This caused highlighting to fail if date was changed.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/qt4-gui/src/dialogs/historydlg.cpp

    r6160 r6178  
    7272  // Calendar for navigating 
    7373  myCalendar = new Calendar(); 
    74   connect(myCalendar, SIGNAL(selectionChanged()), SLOT(calenderClicked())); 
     74  connect(myCalendar, SIGNAL(clicked(const QDate&)), SLOT(calenderClicked())); 
    7575  sidebarLayout->addWidget(myCalendar); 
    7676