summaryrefslogtreecommitdiff
path: root/docs/examples/smooth-gtk-thread.c
Commit message (Collapse)AuthorAgeFilesLines
* examples: reduce variable scopesMarcel Raad2019-05-221-5/+4
| | | | Closes https://github.com/curl/curl/pull/3919
* examples: remove unused variablesMarcel Raad2019-05-211-8/+6
| | | | | | Fixes Codacy/CppCheck warnings. Closes
* docs/examples: URL updatesViktor Szakats2018-09-231-1/+1
| | | | | | | | - also update two URLs outside of docs/examples - fix spelling of filename persistant.c - fix three long lines that started failing checksrc.pl Closes https://github.com/curl/curl/pull/3036
* code style: use spaces around equals signsDaniel Stenberg2017-09-111-3/+3
|
* checksrc: stricter no-space-before-paren enforcementDaniel Stenberg2016-12-131-6/+6
| | | | In order to make the code style more uniform everywhere
* docs/examples: remove spurious white spaces all overDaniel Stenberg2016-04-031-1/+1
| | | | ... to please the new, slightly picker, checksrc.pl
* examples: adhere to curl code styleDaniel Stenberg2016-02-111-8/+4
| | | | | | | | | | All plain C examples now (mostly) adhere to the curl code style. While they are only examples, they had diverted so much and contained all sorts of different mixed code styles by now. Having them use a unified style helps users and readability. Also, as they get copy-and-pasted widely by users, making sure they're clean and nice is a good idea. 573 checksrc warnings were addressed.
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* examples: added descriptionsDaniel Stenberg2016-01-041-3/+6
|
* examples: cleanup curl includesDaniel Stenberg2011-06-281-2/+0
| | | | Only <curl/curl.h> is needed typically and curl/types.h has been removed
* sources: update source headersDaniel Stenberg2011-03-101-2/+15
| | | | | | All C and H files now (should) feature the proper project curl source code header, which includes basic info, a copyright statement and some basic disclaimers.
* remove the CVSish $Id$ linesDaniel Stenberg2010-03-241-1/+0
|
* Made sure that curl_global_init is called in all the multithreadedDan Fandrich2008-04-031-3/+4
| | | | example programs.
* This is a multi threaded application that uses a progress bar to showDaniel Stenberg2008-01-201-0/+217
status. It uses Gtk+ to make a smooth pulse. Written by Jud Bishop