This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/RenderSystems/GL/src/OSX/OgreOSXWindow.cpp b/RenderSystems/GL/src/OSX/OgreOSXWindow.cpp | |
index 44231ab5a..9412b01d7 100644 | |
--- a/RenderSystems/GL/src/OSX/OgreOSXWindow.cpp | |
+++ b/RenderSystems/GL/src/OSX/OgreOSXWindow.cpp | |
@@ -323,7 +323,7 @@ namespace Ogre | |
cgErr = CGLSetParameter(mCGLContextObj, kCGLCPSwapInterval, &swapInterval); | |
#else | |
GLint swapInterval = 1; | |
- cgErr = CGLSetParameter(mCGLContextObj, kCGLCPSwapInterval, &swapInterval); | |
+ cgErr = (CGError)CGLSetParameter(mCGLContextObj, kCGLCPSwapInterval, &swapInterval); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelectorAll('input[type=checkbox]').forEach((btn) => btn.click()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2016 Red Hat, Inc. and/or its affiliates | |
* and other contributors as indicated by the @author tags. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net.Http; | |
using System.Net.Http.Headers; | |
using System.Threading.Tasks; | |
namespace httpclientTest | |
{ | |
public class Program | |
{ | |
static HttpClient client = new HttpClient(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# generated by Slic3r Prusa Edition 1.41.0+ on 2018-10-08 at 10:08:19 | |
[print:0.05mm ULTRADETAIL] | |
avoid_crossing_perimeters = 0 | |
bottom_solid_layers = 10 | |
bridge_acceleration = 300 | |
bridge_angle = 0 | |
bridge_flow_ratio = 0.7 | |
bridge_speed = 20 | |
brim_width = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<catalog_category_default> | |
<reference name='left'> | |
<block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"> | |
<action method="unsetChild"><child>category_filter</child></action> | |
</block> | |
</reference> | |
</catalog_category_default> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<catalog_category_layered> | |
<label>Catalog Category (Anchor)</label> | |
<reference name='left'> | |
<block type="catalog/layer_view" name="catalog.leftnav" after="currency" template="catalog/layer/view.phtml"> | |
<action method="unsetChild"><child>category_filter</child></action> | |
</block> | |
</reference> | |
</catalog_category_layered> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Json only for representation*/ | |
"catalog/category":{ | |
"Id" : 1890, | |
"StoreId": 0, | |
"Path" : 0, | |
"Name": "TestKategorie", | |
"AvailableSortBy": "price", | |
"DefaultSortBy": "price", | |
"IsAnchor": "price", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return array( | |
'base_dir' => '.', | |
'archive_files' => 'build.tar', | |
'extension_name' => 'H2ODev_MagentoVLB', | |
'extension_version' => '0.0.1', | |
'skip_version_compare' => false, | |
'auto_detect_version' => false, | |
'path_output' => getenv('CIRCLE_ARTIFACTS'), | |
'stability' => 'beta', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// The model php file /app/Models/Shop.php | |
namespace App\Models; | |
use Illuminate\Database\Eloquent\Model; | |
class Shop extends Model | |
{ | |
public function services() | |
{ |
NewerOlder