1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-05 16:43:52 +01:00

Use wxPrintf not printf

This commit is contained in:
Paul Licameli
2017-10-09 00:37:10 -04:00
parent cd06c04fa0
commit 4d978bcefb
25 changed files with 134 additions and 132 deletions

View File

@@ -244,11 +244,11 @@ public:
if (dev)
{
#if 0
printf("Got Device\n");
printf(" Node: %s\n", udev_device_get_devnode(dev));
printf(" Subsystem: %s\n", udev_device_get_subsystem(dev));
printf(" Devtype: %s\n", udev_device_get_devtype(dev));
printf(" Action: %s\n", udev_device_get_action(dev));
wxPrintf("Got Device\n");
wxPrintf(" Node: %s\n", udev_device_get_devnode(dev));
wxPrintf(" Subsystem: %s\n", udev_device_get_subsystem(dev));
wxPrintf(" Devtype: %s\n", udev_device_get_devtype(dev));
wxPrintf(" Action: %s\n", udev_device_get_action(dev));
#endif
if (This->mEnabled)
{
@@ -339,10 +339,10 @@ public:
for (int i = 0; i < numberAddresses; i++)
{
#if 0
printf("address %d\n", i);
printf("selector %08x\n", inAddresses[i].mSelector);
printf("scope %08x\n", inAddresses[i].mScope);
printf("element %08x\n", inAddresses[i].mElement);
wxPrintf("address %d\n", i);
wxPrintf("selector %08x\n", inAddresses[i].mSelector);
wxPrintf("scope %08x\n", inAddresses[i].mScope);
wxPrintf("element %08x\n", inAddresses[i].mElement);
#endif
if (This->mEnabled)
{