Changeset 498:d94b9528d75b in qutecom-2.2
- Timestamp:
- Feb 21, 2010 3:16:24 PM (3 years ago)
- Branch:
- default
- Location:
- wengophone/src/presentation/qt
- Files:
-
- 3 edited
-
QtWengoPhone.cpp (modified) (1 diff)
-
chat/QtChatLogViewer.cpp (modified) (2 diffs)
-
chat/QtChatWindow.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wengophone/src/presentation/qt/QtWengoPhone.cpp
r491 r498 202 202 203 203 installQtBrowserWidget(); 204 204 205 #if defined(OS_MACOSX) 206 _wengoPhoneWindow->setUnifiedTitleAndToolBarOnMac(true); 207 #endif 208 205 209 Config & config = ConfigManager::getInstance().getCurrentConfig(); 206 210 mainWindowGeometry(config); -
wengophone/src/presentation/qt/chat/QtChatLogViewer.cpp
r314 r498 151 151 //// 152 152 153 #if defined(OS_MACOSX) 154 setUnifiedTitleAndToolBarOnMac(true); 155 #endif 156 153 157 SAFE_CONNECT(qtWengoPhone.getQtContactList(), SIGNAL(contactChangedEventSignal(QString )), SLOT(contactChangedEventSlot(QString))); 154 158 … … 197 201 copyQAction(toolBar, _ui->actionCreateConferenceCall); 198 202 SAFE_CONNECT_RECEIVER(_ui->actionCreateConferenceCall, SIGNAL(triggered()), qtToolBar, SLOT(createConferenceCall())); 203 204 #if defined (DISABLE_SMS) 205 _ui->actionSendSms->setVisible(false); 206 #elif 199 207 copyQAction(toolBar, _ui->actionSendSms); 200 208 SAFE_CONNECT_RECEIVER(_ui->actionSendSms, SIGNAL(triggered()), qtToolBar, SLOT(sendSms())); 209 #endif 210 201 211 SAFE_CONNECT(_ui->actionSaveHistoryAs, SIGNAL(triggered()), SLOT(saveChatHistory())); 202 212 SAFE_CONNECT(_ui->actionActionRestartChat, SIGNAL(triggered()), SLOT(restartChat())); 203 213 //// 204 214 205 #ifndef DISABLE_FILETRANSFER 215 #if defined (DISABLE_FILETRANSFER) 216 _ui->actionSendFile->setVisible(false); 217 _ui->actionShowFileTransfer->setVisible(false); 218 #elif 206 219 // setup "tools" menu 207 220 copyQAction(toolBar, _ui->actionShowFileTransfer); -
wengophone/src/presentation/qt/chat/QtChatWindow.cpp
r440 r498 166 166 addChatWidgetTab(_imChatSession, from); 167 167 //// 168 169 #if defined(OS_MACOSX) 170 setUnifiedTitleAndToolBarOnMac(true); 171 #endif 168 172 } 169 173
Note: See TracChangeset
for help on using the changeset viewer.
