summaryrefslogtreecommitdiff
path: root/fluid/template_panel.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2005-03-24 16:31:59 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2005-03-24 16:31:59 +0000
commitae55d848e95005ddb24d50846cbcc8b0aca77a6e (patch)
tree041a1d959aa23865501c98adb757d9190b2ecc95 /fluid/template_panel.cxx
parentead8aa8fcb61f56daa29171f7de702464a53dfdd (diff)
More HIG stuff - file menu now shows recent files in-line, above the "Quit"
item. Removed debug stuff from template panel. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4184 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/template_panel.cxx')
-rw-r--r--fluid/template_panel.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/fluid/template_panel.cxx b/fluid/template_panel.cxx
index a64bdcfc8..c9a523787 100644
--- a/fluid/template_panel.cxx
+++ b/fluid/template_panel.cxx
@@ -97,14 +97,9 @@ strlcpy(pngfile, flfile, sizeof(pngfile));
if ((ext = strrchr(pngfile, '.')) == NULL) return;
strcpy(ext, ".png");
-printf("updating preview to \"%s\"...\n", pngfile);
-
img = Fl_Shared_Image::get(pngfile);
if (img) {
- printf("img=%p, img->w()=%d, img->h()=%d\n",
- img, img->w(), img->h());
-
template_preview->image(img);
template_preview->redraw();
};