Fixed the printing and charset combo boxes in Unix PuTTY. (The
[u/mdw/putty] / unix / uxputty.c
index 18f1b6b..53ee0d8 100644 (file)
 /*
  * TODO:
  * 
- *  - libcharset enumeration.
- * 
- *  - fix the printer enum (I think the sensible thing is simply to
- *    have uxcfg.c remove the drop-down list completely, since you
- *    can't sensibly provide an enumerated list of lpr commands!).
- * 
  *  - Remainder of the context menu:
  * 
  *     - Event Log (this means we must implement the Event Log; not
@@ -73,27 +67,6 @@ void cleanup_exit(int code)
     exit(code);
 }
 
-/*
- * Another bunch of temporary stub functions. These ones will want
- * removing by means of implementing them properly: libcharset
- * should invent its own sensible format for codepage names and a
- * means of enumerating them, and printer_enum needs to be dealt
- * with somehow or other too.
- */
-
-char *cp_name(int codepage)
-{
-    return "";
-}
-char *cp_enumerate(int index)
-{
-    return NULL;
-}
-int decode_codepage(char *cp_name)
-{
-    return -2;
-}
-
 const char *const appname = "PuTTY";
 
 Backend *select_backend(Config *cfg)