You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			331 B
		
	
	
	
		
			Raku
		
	
			
		
		
	
	
			24 lines
		
	
	
		
			331 B
		
	
	
	
		
			Raku
		
	
| BEGIN { print "1..1\n" }
 | |
| 
 | |
| use TQt;
 | |
| 
 | |
| $a = TQt::Application();
 | |
| $pb=TQt::PushButton("Foooo", undef);
 | |
| 
 | |
| {
 | |
|   use bytes;
 | |
|   $pb->setText( "élégant" );
 | |
| 
 | |
|   $b = $pb->text();
 | |
|   $b2 = TQt::Widget::tr("élégant");
 | |
| }
 | |
| 
 | |
| 
 | |
| $c = $pb->text();
 | |
| $c2= TQt::Widget::tr("élégant");
 | |
| 
 | |
| {
 | |
|   use bytes;
 | |
|   print +($b ne $c and $b2 ne $c2) ? "ok 1\n":"not ok\n";
 | |
| }
 |