mirror of https://github.com/BOINC/boinc.git
Mac: Fix bad paths to MacBitMapComboBox.cpp, .h in XCode project
svn path=/trunk/boinc/; revision=23806
This commit is contained in:
parent
2b75b4a75b
commit
74f910302f
|
@ -3904,3 +3904,14 @@ Rom 6 July 2011
|
|||
/
|
||||
configure.ac
|
||||
version.h
|
||||
|
||||
Charlie 6 July 2011
|
||||
- Mac: Fix bad paths to MacBitMapComboBox.cpp, .h in XCode project.
|
||||
(Checked into 6.13.0 tag).
|
||||
|
||||
clientgui/
|
||||
mac/
|
||||
MacBitmapComboBox.cpp, .h
|
||||
mac_build/
|
||||
boinc.xcodeproj/
|
||||
project.pbxproj
|
||||
|
|
|
@ -28,6 +28,10 @@ const wxChar CBOINCBitmapComboBoxNameStr[] = wxT("combo");
|
|||
|
||||
IMPLEMENT_DYNAMIC_CLASS(CBOINCBitmapChoice, wxChoice)
|
||||
|
||||
BEGIN_EVENT_TABLE(CBOINCBitmapChoice, wxChoice)
|
||||
EVT_LEFT_DOWN(CBOINCBitmapChoice::OnMouseDown)
|
||||
END_EVENT_TABLE()
|
||||
|
||||
CBOINCBitmapChoice::CBOINCBitmapChoice() {}
|
||||
|
||||
CBOINCBitmapChoice::CBOINCBitmapChoice(wxWindow *parent, wxWindowID id,
|
||||
|
@ -78,6 +82,12 @@ void CBOINCBitmapChoice::SetItemBitmap(unsigned int n, const wxBitmap& bitmap) {
|
|||
#endif
|
||||
}
|
||||
}
|
||||
void CBOINCBitmapChoice::OnMouseDown(wxMouseEvent& event) {
|
||||
wxToolTip::Enable(false);
|
||||
event.Skip();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@ WXDLLEXPORT_DATA(extern const wxChar) CBOINCBitmapComboBoxNameStr[];
|
|||
class CBOINCBitmapChoice : public wxChoice
|
||||
{
|
||||
DECLARE_DYNAMIC_CLASS(CBOINCBitmapChoice )
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
public:
|
||||
CBOINCBitmapChoice() ;
|
||||
|
@ -43,6 +44,7 @@ public:
|
|||
const wxValidator& validator = wxDefaultValidator,
|
||||
const wxString& name = CBOINCBitmapChoiceNameStr);
|
||||
|
||||
void OnMouseDown(wxMouseEvent& event);
|
||||
void SetItemBitmap(unsigned int n, const wxBitmap& bitmap);
|
||||
};
|
||||
|
||||
|
|
|
@ -828,8 +828,8 @@
|
|||
DD7475500D86273300860636 /* coproc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = coproc.cpp; sourceTree = "<group>"; };
|
||||
DD7748980A356C880025D05E /* SetUpSecurity */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = SetUpSecurity; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
DD7748B40A356D6C0025D05E /* SetupSecurity.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SetupSecurity.cpp; path = ../clientgui/mac/SetupSecurity.cpp; sourceTree = SOURCE_ROOT; };
|
||||
DD77A71612F2D1C9006B82E9 /* MacBitmapComboBox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MacBitmapComboBox.cpp; sourceTree = "<group>"; };
|
||||
DD77A71712F2D1C9006B82E9 /* MacBitmapComboBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MacBitmapComboBox.h; sourceTree = "<group>"; };
|
||||
DD77A71612F2D1C9006B82E9 /* MacBitmapComboBox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MacBitmapComboBox.cpp; path = ../clientgui/mac/MacBitmapComboBox.cpp; sourceTree = "<group>"; };
|
||||
DD77A71712F2D1C9006B82E9 /* MacBitmapComboBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MacBitmapComboBox.h; path = ../clientgui/mac/MacBitmapComboBox.h; sourceTree = "<group>"; };
|
||||
DD7A5D8112EEBDF30006268E /* sg_TaskCommandPopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sg_TaskCommandPopup.h; path = ../clientgui/sg_TaskCommandPopup.h; sourceTree = SOURCE_ROOT; };
|
||||
DD7A5D8212EEBE5E0006268E /* sg_TaskCommandPopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sg_TaskCommandPopup.cpp; path = ../clientgui/sg_TaskCommandPopup.cpp; sourceTree = SOURCE_ROOT; };
|
||||
DD7A5D9D12EEBFC20006268E /* sg_ProjectWebSitesPopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sg_ProjectWebSitesPopup.h; path = ../clientgui/sg_ProjectWebSitesPopup.h; sourceTree = SOURCE_ROOT; };
|
||||
|
|
Loading…
Reference in New Issue