Changeset 4491
- Timestamp:
- 07/07/06 07:41:05 (2 years ago)
- Files:
-
- 1 modified
-
trunk/qt-gui/src/usereventdlg.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt-gui/src/usereventdlg.cpp
r4490 r4491 1954 1954 void UserSendCommon::slot_insertEmoticon(const QString &sKey) 1955 1955 { 1956 mleSend->insert(sKey); 1956 if (mleSend) 1957 mleSend->insert(sKey); 1957 1958 } 1958 1959 … … 1960 1961 void UserSendCommon::slot_SetForegroundICQColor() 1961 1962 { 1963 if (!mleSend) 1964 return; 1965 1962 1966 #ifdef USE_KDE 1963 1967 QColor c = mleSend->foregroundColor(); … … 2023 2027 void UserSendCommon::slot_SetBackgroundICQColor() 2024 2028 { 2029 if (!mleSend) 2030 return; 2031 2025 2032 #ifdef USE_KDE 2026 2033 QColor c = mleSend->backgroundColor(); … … 3308 3315 : UserSendCommon(s, theSigMan, m, szId, nPPID, parent, "UserSendContactEvent") 3309 3316 { 3317 chkMass->setChecked(false); 3318 chkMass->setEnabled(false); 3319 btnForeColor->setEnabled(false); 3320 btnBackColor->setEnabled(false); 3321 btnEmoticon->setEnabled(false); 3322 3310 3323 delete mleSend; mleSend = NULL; 3311 3324
