MCPcopy Create free account
hub / github.com/bumptop/BumpTop / getVersionString

Method getVersionString

trunk/win/Source/BT_UpdateServer.cpp:36–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36QString UpdateServerImpl::getVersionString()
37{
38 // Download the version file from our servers
39
40
41 FileTransfer versionFileTransfer(FileTransfer::Download, 0);
42 versionFileTransfer
43 .setUrl(_versionFileUrl)
44 .setTemporaryString();
45 bool success = ftManager->addTransfer(versionFileTransfer);
46 if (!success) return "";
47 return versionFileTransfer.getTemporaryString();
48}
49
50QString UpdateServerImpl::getUpdateMessageString()
51{

Callers

nothing calls this directly

Calls 2

addTransferMethod · 0.80
getTemporaryStringMethod · 0.80

Tested by

no test coverage detected