-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmainframemenutools.cpp
More file actions
27 lines (24 loc) · 885 Bytes
/
mainframemenutools.cpp
File metadata and controls
27 lines (24 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/////////////////////////////////////////////////////////////////////////////
// Name: mainframemenutools.cpp
// Purpose: Event handlers for the Tools menu
// Author: Brad Larsen
// Modified by:
// Created: Jan 9, 2005
// RCS-ID:
// Copyright: (c) Brad Larsen
// License: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#include "stdwx.h"
#include "mainframe.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
void MainFrame::OnToolsMergeScores(wxCommandEvent& WXUNUSED(event))
{
// Menu Tools -> Merge Scores
//------Last Checked------//
// - Apr 22, 2007
wxMessageBox(wxT("TODO: Add a dialog interface to merge guitar and bass \
scores from different files. (see the PowerTabDocument::Mergexxx \
functions)"));
}