diff options
| author | Manolo Gouy <Manolo> | 2010-03-29 12:15:22 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2010-03-29 12:15:22 +0000 |
| commit | 24c6e23e25f0dd42784dee65be70e4bec6f05722 (patch) | |
| tree | 11e630aeccff6aab7a57f41f30600feeab55dada /src/print_panel.cxx | |
| parent | 82be53f64d34500f1c4fcf8b14f9ca8ab275458e (diff) | |
print_panel.cxx: allow customization of "Print To File" string
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7355 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/print_panel.cxx')
| -rw-r--r-- | src/print_panel.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/print_panel.cxx b/src/print_panel.cxx index 27631d8cc..75456218c 100644 --- a/src/print_panel.cxx +++ b/src/print_panel.cxx @@ -81,6 +81,7 @@ const char *Fl_Printer::dialog_properties = "Properties..."; const char *Fl_Printer::dialog_copyNo = "# Copies:"; const char *Fl_Printer::dialog_print_button = "Print"; const char *Fl_Printer::dialog_cancel_button = "Cancel"; +const char *Fl_Printer::dialog_print_to_file = "Print To File"; const char *Fl_Printer::property_title = "Printer Properties"; const char *Fl_Printer::property_pagesize = "Page Size:"; const char *Fl_Printer::property_mode = "Output Mode:"; @@ -548,7 +549,7 @@ void print_load() { } print_choice->clear(); - print_choice->add("Print To File", 0, 0, 0, FL_MENU_DIVIDER); + print_choice->add(Fl_Printer::dialog_print_to_file, 0, 0, 0, FL_MENU_DIVIDER); print_choice->value(0); print_start = 0; |
