mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Remove duplicate symbol ColumnInfo from global namespace #8637
This commit is contained in:
parent
9c4a8ba528
commit
09d9938ecd
2 changed files with 14 additions and 17 deletions
|
|
@ -72,14 +72,6 @@ using namespace Glib;
|
|||
using namespace Editing;
|
||||
using Gtkmm2ext::Keyboard;
|
||||
|
||||
struct ColumnInfo {
|
||||
int index;
|
||||
int sort_idx;
|
||||
Gtk::AlignmentEnum al;
|
||||
const char* label;
|
||||
const char* tooltip;
|
||||
};
|
||||
|
||||
//#define SHOW_REGION_EXTRAS
|
||||
|
||||
EditorRegions::EditorRegions (Editor* e)
|
||||
|
|
@ -177,8 +169,14 @@ EditorRegions::EditorRegions (Editor* e)
|
|||
TreeViewColumn* col;
|
||||
Gtk::Label* l;
|
||||
|
||||
struct ColumnInfo {
|
||||
int index;
|
||||
int sort_idx;
|
||||
Gtk::AlignmentEnum al;
|
||||
const char* label;
|
||||
const char* tooltip;
|
||||
} ci[] = {
|
||||
/* clang-format off */
|
||||
ColumnInfo ci[] = {
|
||||
{ 0, 0, ALIGN_LEFT, _("Name"), _("Region name") },
|
||||
{ 1, 1, ALIGN_LEFT, _("# Ch"), _("# Channels in the region") },
|
||||
{ 2, 2, ALIGN_LEFT, _("Tags"), _("Tags") },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue