diff options
author | Guy Harris <guy@alum.mit.edu> | 2013-04-02 20:35:46 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2013-04-02 20:35:46 +0000 |
commit | 432e914dbd43c3ee354aa1eeff8f2dc750913f0e (patch) | |
tree | 80578ae6f2e2f3f347a4022b4d5503852e075d56 /file.h | |
parent | f32a839bb0514461072096dadad0e0d888fc3869 (diff) | |
download | wireshark-432e914dbd43c3ee354aa1eeff8f2dc750913f0e.tar.gz wireshark-432e914dbd43c3ee354aa1eeff8f2dc750913f0e.tar.bz2 wireshark-432e914dbd43c3ee354aa1eeff8f2dc750913f0e.zip |
Rename cf_not_saved() to cf_has_unsaved_data() to clarify what it
indicates. (Note: "unsaved data" is more than just "unsaved changes";
it could also mean "temporary file that hasn't been saved anywhere".)
svn path=/trunk/; revision=48709
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -232,7 +232,7 @@ gboolean cf_can_save_as(capture_file *cf); * @param cf the capture file to check * @return TRUE if it has unsaved data, FALSE if it doesn't */ -gboolean cf_not_saved(capture_file *cf); +gboolean cf_has_unsaved_data(capture_file *cf); /** * Save all packets in a capture file to a new file, and, if that succeeds, |