Commit graph

1009 commits

Author SHA1 Message Date
Ray Strode
6cfee930e3 [throbgress] Mark plugin interface functions static
They should only get accessed via the vtable,
so we don't need to export them directly.
2009-08-06 09:10:03 -04:00
Ray Strode
f581814099 [space-flares] Mark plugin interface functions static
They should only get accessed via the vtable,
so we don't need to export them directly.
2009-08-06 09:07:24 -04:00
Ray Strode
e6c57c98c2 [script] Mark plugin interface functions static
They should only get accessed via the vtable,
so we don't need to export them directly.
2009-08-06 09:05:42 -04:00
Ray Strode
c4dce3a16d [fade-throbber] Mark plugin interface functions static
They should only get accessed via the vtable,
so we don't need to export them directly.
2009-08-06 09:04:23 -04:00
Ray Strode
66364c712d [details] Mark plugin interface functions static
They should only get accessed via the vtable,
so we don't need to export them directly.
2009-08-06 09:02:30 -04:00
Ray Strode
f81632299e [text] Mark plugin interface functions static
They should only get accessed via the vtable,
so we don't need to export them directly.
2009-08-06 08:59:54 -04:00
Ray Strode
9443dd0d4c [text] Mark internal functions static 2009-08-06 08:44:49 -04:00
Ray Strode
f4d5be76ae [text] Drop unused functions 2009-08-06 08:43:09 -04:00
Ray Strode
a86405b795 [details] Drop unused function 2009-08-05 23:10:24 -04:00
Ray Strode
0b67fbbdce [script] do abs(x) > epsilon instead of x != 0
Fixes a compiler warning.
2009-08-05 23:09:02 -04:00
Ray Strode
10b68cecef [space-flares] Add casts to silence warnings 2009-08-05 23:02:47 -04:00
Ray Strode
6ee5d8f881 [details] Add cast to silence warning 2009-08-05 23:00:18 -04:00
Ray Strode
7462f8142d [text] Drop unused variable 2009-08-05 22:59:42 -04:00
Ray Strode
3951104e21 [fade-throbber] Fix signedness problem 2009-08-05 22:58:51 -04:00
Ray Strode
82db416f40 [window] Fix constness bug in test 2009-08-05 22:56:12 -04:00
Ray Strode
78bacad196 [log-viewer] Drop unused variable 2009-08-05 22:55:07 -04:00
Ray Strode
cfcf95e994 [client] Drop unused variable 2009-08-05 22:53:46 -04:00
Ray Strode
509254ec7d [main] drop unused function 2009-08-05 22:52:39 -04:00
Ray Strode
230a37e550 [main] Fix redirect_standard_io_to_device arg constness 2009-08-05 22:50:17 -04:00
Ray Strode
1d8ec8f0f2 [window] Fix signedness confusion 2009-08-05 22:49:12 -04:00
Ray Strode
246c52d341 [utils] Make utf-8 functions take const char *
They were taking char * before which is wrong
since they don't take ownership of the passed in
bytes, only look at them.
2009-08-05 22:45:24 -04:00
Ray Strode
17cb6197d0 [text-progress-bar] Don't initialize os_string
It's not const, so initializing it with a string literal
makes the compiler moan.

At some point we should move os string getting to libply.
2009-08-05 22:40:48 -04:00
Ray Strode
13ad2849cf [progress-animation] Add casts to silence warning 2009-08-05 22:38:00 -04:00
Ray Strode
37ddabe163 [progress-bar] Remove unused variables 2009-08-05 22:36:24 -04:00
Ray Strode
29721caa27 [label] Unload plugin on free 2009-08-05 22:35:45 -04:00
Ray Strode
60b15dd999 [label] Add ply_label_hide to header 2009-08-05 22:32:29 -04:00
Ray Strode
4acdd54a49 [progress] Fix constness problem 2009-08-05 22:30:44 -04:00
Ray Strode
32943e1cf8 [progress] add pause/unpause to header
They weren't in the header so were getting used implicitly
2009-08-05 22:29:20 -04:00
Ray Strode
3d9945a23c [progress] Remove duplicate declaration from header 2009-08-05 22:28:25 -04:00
Ray Strode
79a1c28c34 [progress] Remove unused variable 2009-08-05 22:27:46 -04:00
Ray Strode
b9972dc156 [command-parser] free list data in destructors
The command and option lists were getting freed, but the
actual commands and options weren't.
2009-08-05 22:26:40 -04:00
Ray Strode
425d8133ab [command-parser] Make some int fields size_t
This fixes a couple of compiler warnings.
2009-08-05 22:18:37 -04:00
Ray Strode
283215be39 [command-parser] Add int cast to printf to %*s arg
This fixes a compiler warning.
2009-08-05 22:14:35 -04:00
Ray Strode
8753c3bbac [command-parser] Drop unused variables
This fixes a couple of compiler warnings.
2009-08-05 22:13:28 -04:00
Ray Strode
4b42a0781a [command-parser] make constructor/destructors static
They aren't public API and this fixes a compiler warning.
2009-08-05 18:39:00 -04:00
Ray Strode
81cf6189fb [hashtable] Add casts to fix constness warnings 2009-08-05 18:37:45 -04:00
Ray Strode
67ec695d6f [hashtable] add "static" specifier to internal functions 2009-08-05 18:33:54 -04:00
Ray Strode
990dd63275 [hashtable] Fix some signedness warnings 2009-08-05 18:32:42 -04:00
Ray Strode
e3f52316cf [hashtable] make insert_internal static 2009-08-05 18:31:04 -04:00
Ray Strode
3be916129e [hashtable] include string.h
So we can use strcmp without a compiler warning.
2009-08-05 18:29:45 -04:00
Ray Strode
16a0aa3286 [hashtable] Add some intptr_t casts
This is to fix some compiler warnings.
2009-08-05 18:28:06 -04:00
Ray Strode
63f116f523 [event-loop] Make ply_event_loop_free_sources static
This fixes a compiler warning.
2009-08-05 18:23:11 -04:00
Ray Strode
a6936963fb [terminal] fix header prototype
argument list was () instead of (void).  This fixes
a compiler warning.
2009-08-05 18:22:23 -04:00
Ray Strode
916c3e04da [utils] Fix signedness warning in utf8 handling 2009-08-05 18:20:54 -04:00
Ray Strode
ccea851e88 [utils] drop ply_create_unix_socket
It's dead code.
2009-08-05 18:20:48 -04:00
Ray Strode
a50b3432b7 [list] make node constructor/destructor static
They aren't public API and this fixes a compiler warning.
2009-08-05 18:12:21 -04:00
Ray Strode
9a5830f0b4 [frame-buffer] Drop ply_frame_buffer_area_union
It's no longer used.  We can always pull it out of history if we
need it again.
2009-08-05 18:10:37 -04:00
Ray Strode
b6712a35ca [frame-buffer] Fix some signedness warnings 2009-08-05 18:08:06 -04:00
Ray Strode
0c257e1d92 [frame-buffer] use inline at start of prototype
This fixes a gcc warning.
2009-08-05 18:05:54 -04:00
Ray Strode
93a16e060c [script] drop stringify, .script.h instead of .string
stringify.py is written in perl, but doesn't do much to justify the
dependency.  We now just do sed in the Makefile.  Also, rename
.string to .script.h since that's a little more conventional.
2009-08-05 15:41:37 -04:00