Changeset 6124 for trunk/qt4-gui/src/dialogs
- Timestamp:
- 04/05/08 17:09:39 (8 months ago)
- Files:
-
- 1 modified
-
trunk/qt4-gui/src/dialogs/customautorespdlg.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt4-gui/src/dialogs/customautorespdlg.cpp
r6069 r6124 21 21 #include "customautorespdlg.h" 22 22 23 #include <QVBoxLayout>24 23 #include <QDialogButtonBox> 25 24 #include <QPushButton> 26 25 #include <QTimer> 26 #include <QVBoxLayout> 27 27 28 28 #include <licq_user.h> 29 #include <licq_events.h>30 29 31 #include "core/ mainwin.h"30 #include "core/licqgui.h" 32 31 33 32 #include "helpers/licqstrings.h" … … 104 103 u->SetCustomAutoResponse(s.toLocal8Bit()); 105 104 gUserManager.DropUser(u); 106 CICQSignal sig(SIGNAL_UPDATExUSER, USER_BASIC, myId.toLatin1(), myPpid); 107 gMainWindow->slot_updatedUser(&sig); 105 106 // Daemon doesn't send signal when autoresponse is changed so we must tell 107 // contact list to update since custom autoresponse affects extended icons 108 LicqGui::instance()->updateUserData(myId, myPpid); 108 109 } 109 110 close(); … … 117 118 u->ClearCustomAutoResponse(); 118 119 gUserManager.DropUser(u); 119 CICQSignal sig(SIGNAL_UPDATExUSER, USER_BASIC, myId.toLatin1(), myPpid); 120 gMainWindow->slot_updatedUser(&sig); 120 121 // Daemon doesn't send signal when autoresponse is changed so we must tell 122 // contact list to update since custom autoresponse affects extended icons 123 LicqGui::instance()->updateUserData(myId, myPpid); 121 124 } 122 125 close();
