mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-30 09:48:59 -04:00
Merge pull request #186 from realityfabric/minor_edits
fixed spelling errors in several files
This commit is contained in:
commit
2a82ef543c
6 changed files with 10 additions and 10 deletions
|
@ -364,7 +364,7 @@ Changes for 0.5.5a
|
|||
|
||||
* Bug fixes
|
||||
- Fixed proper display of crypto params for UDP connections
|
||||
- Added missing location from cert when addign new friend
|
||||
- Added missing location from cert when adding new friend
|
||||
- Added missing IndicateConfigChanged to p3PeerMgrIMPL::setDynDNS
|
||||
- Fixed crash when closing the main window without the setting "Minimize to Tray Icon"
|
||||
- Renamed the setting "Do not Minimize to Tray Icon" to "Minimize to Tray
|
||||
|
@ -1189,7 +1189,7 @@ Changes for v0.5.3b
|
|||
- Added BSD specific changes - data directory and #including <sys/params.h>
|
||||
- improved plugin management to allow services to be used, and config pages to be added
|
||||
- Improvement to plugin system:
|
||||
- made config page system more automatic, to allow addign config pages from plugins
|
||||
- made config page system more automatic, to allow adding config pages from plugins
|
||||
- added (disabled) checkbox and function to allow all plugins for development
|
||||
- added config page methods to RsPlugin class
|
||||
- Mark local existing files in SearchDialog with red text color.
|
||||
|
@ -1202,7 +1202,7 @@ Changes for v0.5.3b
|
|||
- Added Cache system for GPG Certificates.
|
||||
- This should reduce gpg calls by 90+%.
|
||||
- Added translation for "[ ... Missing Message ... ]".
|
||||
- removed cache adding strategy to DL queue that was O(n^2). Now addign cache at the end of the queue
|
||||
- removed cache adding strategy to DL queue that was O(n^2). Now adding cache at the end of the queue
|
||||
- The channel message (in channels) is set to read when the user clicks on the show more button.
|
||||
- The forum/channel news feed is removed when the user reads the message in forums/channels.
|
||||
- The standard font is now used for new chat lobbies.
|
||||
|
|
|
@ -401,7 +401,7 @@ void MainWindow::initStackedPage()
|
|||
else
|
||||
icon = QIcon(":images/extension_48.png") ;
|
||||
|
||||
std::cerr << " Addign widget page for plugin " << rsPlugins->plugin(i)->getPluginName() << std::endl;
|
||||
std::cerr << " Adding widget page for plugin " << rsPlugins->plugin(i)->getPluginName() << std::endl;
|
||||
pluginPage->setIconPixmap(icon);
|
||||
pluginPage->setPageName(QString::fromUtf8(rsPlugins->plugin(i)->getPluginName().c_str()));
|
||||
addPage(pluginPage, grp, ¬ify);
|
||||
|
|
|
@ -1341,7 +1341,7 @@ void FlatStyle_RDM::updateRefs()
|
|||
if(details->type == DIR_TYPE_FILE) // only push files, not directories nor persons.
|
||||
_ref_entries.push_back(std::pair<void*,QString>(ref,computeDirectoryPath(*details)));
|
||||
#ifdef RDM_DEBUG
|
||||
std::cerr << "FlatStyle_RDM::postMods(): addign ref " << ref << std::endl;
|
||||
std::cerr << "FlatStyle_RDM::postMods(): adding ref " << ref << std::endl;
|
||||
#endif
|
||||
for(std::list<DirStub>::const_iterator it = details->children.begin(); it != details->children.end(); ++it)
|
||||
_ref_stack.push_back(it->ref) ;
|
||||
|
|
|
@ -46,7 +46,7 @@ void GroupSelectionBox::selectedGroupIds(std::list<std::string> &groupIds) const
|
|||
QListWidgetItem *listItem = item(i);
|
||||
if (listItem->checkState() == Qt::Checked) {
|
||||
groupIds.push_back(item(i)->data(ROLE_ID).toString().toStdString());
|
||||
std::cerr << "Addign selected item " << groupIds.back() << std::endl;
|
||||
std::cerr << "Adding selected item " << groupIds.back() << std::endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -74,7 +74,7 @@ void GroupSelectionBox::selectedGroupNames(QList<QString> &groupNames) const
|
|||
QListWidgetItem *listItem = item(i);
|
||||
if (listItem->checkState() == Qt::Checked) {
|
||||
groupNames.push_back(item(i)->text());
|
||||
std::cerr << "Addign selected item " << groupNames.back().toUtf8().constData() << std::endl;
|
||||
std::cerr << "Adding selected item " << groupNames.back().toUtf8().constData() << std::endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue