root/trunk/TagCombo.cpp

Revision 5, 0.9 kB (checked in by qbert, 6 years ago)

Initial ( and last :( ) commit

Line 
1 // TagCombo.cpp : implementation file
2 //
3
4 #include "stdafx.h"
5 #include "Elephant.h"
6 #include "TagCombo.h"
7
8 #ifdef _DEBUG
9 #define new DEBUG_NEW
10 #undef THIS_FILE
11 static char THIS_FILE[] = __FILE__;
12 #endif
13
14 /////////////////////////////////////////////////////////////////////////////
15 // CTagCombo
16
17 CTagCombo::CTagCombo()
18 {
19 }
20
21 CTagCombo::~CTagCombo()
22 {
23 }
24
25
26 BEGIN_MESSAGE_MAP(CTagCombo, CComboBoxSuper)
27     //{{AFX_MSG_MAP(CTagCombo)
28         // NOTE - the ClassWizard will add and remove mapping macros here.
29     //}}AFX_MSG_MAP
30     ON_CONTROL_REFLECT(CBN_SELCHANGE, OnSelchange)
31 END_MESSAGE_MAP()
32
33 /////////////////////////////////////////////////////////////////////////////
34 // CTagCombo message handlers
35
36 void CTagCombo::OnSelchange()
37 {
38     CMainFrame* m = static_cast<CMainFrame*>(Globals::theApp.m_pMainWnd );
39
40     if ( m )
41     m->OnNavigationExecgotosymbol();
42 }
Note: See TracBrowser for help on using the browser.