| 42 | #include "translationmanager.h" |
| 43 | |
| 44 | static void gKeyFileDeleter(GKeyFile* ptr) { |
| 45 | if (ptr != nullptr) |
| 46 | g_key_file_free(ptr); |
| 47 | } |
| 48 | |
| 49 | static void gErrorDeleter(GError* ptr) { |
| 50 | if (ptr != nullptr) |
nothing calls this directly
no outgoing calls
no test coverage detected