More namespace fun with Qt. It seems like Q*Stream* wants "endl" and
std::cout wants std::endl. So be it. svn path=/trunk/kdebase/kwin/; revision=191602
This commit is contained in:
parent
6c9a60ba18
commit
5354333dd5
1 changed files with 2 additions and 2 deletions
|
@ -211,7 +211,7 @@ void KeramikEmbedder::writeIndex()
|
|||
int main( int argv, char **argc )
|
||||
{
|
||||
if ( argv < 2 ) {
|
||||
std::cout << "Insufficient arguments" << endl;
|
||||
std::cout << "Insufficient arguments" << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -219,7 +219,7 @@ int main( int argv, char **argc )
|
|||
|
||||
for ( int i = 1; i < argv; i++ )
|
||||
{
|
||||
std::cout << argc[i] << endl;
|
||||
std::cout << argc[i] << std::endl;
|
||||
embedder.embed( argc[i] );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue