Changeset 9367
- Timestamp:
- Oct 22, 2009, 3:01:38 AM (13 years ago)
- Location:
- branches/1.7x
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.7x/NEWS
r9366 r9367 1 === Transmission 1.76 (2009/ 09/13) ===1 === Transmission 1.76 (2009/xx/yy) === 2 2 ==== All Platforms ==== 3 3 * Fix possible dataloss when trying to move torrents to where they already are 4 4 * Fix manpage errors 5 5 * Fix minor protocol error that didn't send a port message to some peers 6 * Use automake's "quieter builds" rule when available7 6 ==== Daemon ==== 8 7 * Fix possible dataloss when using "transmission-remote --find" … … 17 16 ==== Qt ==== 18 17 * Fix crash when removing expired torrents from the display 18 * Fix client from closing, rather than closing to the system tray, when clicking X 19 19 20 20 === Transmission 1.75 (2009/09/13) === -
branches/1.7x/qt/mainwin.cc
r9363 r9367 15 15 16 16 #include <QCheckBox> 17 #include <QCloseEvent> 17 18 #include <QDesktopServices> 18 19 #include <QFileDialog> … … 287 288 288 289 void 290 TrMainWindow :: closeEvent( QCloseEvent * event ) 291 { 292 // if they're using a tray icon, close to the tray 293 // instead of exiting 294 if( !myPrefs.getBool( Prefs :: SHOW_TRAY_ICON ) ) 295 event->accept( ); 296 else { 297 toggleWindows( false ); 298 event->ignore( ); 299 } 300 } 301 302 /**** 303 ***** 304 ****/ 305 306 void 289 307 TrMainWindow :: onSessionSourceChanged( ) 290 308 { -
branches/1.7x/qt/mainwin.h
r8890 r9367 50 50 { 51 51 Q_OBJECT 52 53 private: 54 virtual void closeEvent( QCloseEvent * event ); 52 55 53 56 private:
Note: See TracChangeset
for help on using the changeset viewer.