Changeset 72
- Timestamp:
- 10/16/07 18:47:17 (4 years ago)
- Files:
-
- branches/mactest/src/clientDialog.cpp (modified) (2 diffs)
- branches/mactest/src/include/mainDialog.h (modified) (1 diff)
- branches/mactest/src/preferencesDialog.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/mactest/src/clientDialog.cpp
r71 r72 71 71 locationSizer->Add(new wxButton(this, BTN_BROWSE, wxT("..."), wxDefaultPosition, wxSize(26, 26)), 0, wxALIGN_CENTER_VERTICAL); 72 72 #else 73 locationSizer->Add(new wxButton(this, BTN_BROWSE, _("Choose") , wxDefaultPosition), 0, wxALIGN_CENTER_VERTICAL);73 locationSizer->Add(new wxButton(this, BTN_BROWSE, _("Choose")), 0, wxALIGN_CENTER_VERTICAL); 74 74 #endif 75 75 … … 104 104 SetSizer(topLevelSizer); 105 105 topLevelSizer->Fit(this); 106 106 107 } 107 108 branches/mactest/src/include/mainDialog.h
r51 r72 93 93 #define PREF_TOOLS_FILEMANAGER_DV wxT("konqueror --profile filemanagement"); 94 94 #elif __WXMAC__ 95 #define PREF_TOOLS_FILEMANAGER_DV wxT(" finder.app");95 #define PREF_TOOLS_FILEMANAGER_DV wxT("open"); 96 96 #endif 97 97 branches/mactest/src/preferencesDialog.cpp
r71 r72 816 816 mSystemFileManager->Select(4); 817 817 } 818 #elif __WXMAC__ 819 if(filemanager == wxT("open")) 820 { 821 mSystemFileManager->Select(0); 822 } 823 else // other filemanager 824 { 825 mSystemFileManager->Select(1); 826 } 818 827 #endif 819 828 … … 1179 1188 break; 1180 1189 } 1181 1190 #elif __WXMAC__ 1191 switch(mSystemFileManager->GetSelection()) 1192 { 1193 // --- 1194 case 0: //Finder 1195 mSystemOtherFM->SetValue(wxT("open")); 1196 break; 1197 1198 case 1: //Other 1199 mSystemOtherFM->SetValue(wxT("")); 1200 break; 1201 1202 default: 1203 break; 1204 } 1182 1205 #endif 1183 1206 break;
