| 377 | } |
| 378 | |
| 379 | void MinecraftAccount::incrementUses() |
| 380 | { |
| 381 | bool wasInUse = isInUse(); |
| 382 | Usable::incrementUses(); |
| 383 | if(!wasInUse) |
| 384 | { |
| 385 | emit changed(); |
| 386 | // FIXME: we now need a better way to identify accounts... |
| 387 | qWarning() << "Profile" << data.profileId() << "is now in use."; |
| 388 | } |
| 389 | } |